Files
profanity/tests/unittests/xmpp/stub_avatar.c
Jabber Developer b4d3563b96 Cleanup (#5)
- Update formatting for stub files
- Update docs

While original project, Profanity, provides valuable basis for this
fork, we are not affiliated with the upstream. This commit
is updating documentation to reflect accurate information.

The docs are going to be updated further once the website is created.

Reviewed-on: #5
Co-authored-by: Jabber Developer <jabber.developer@jabber.space>
Co-committed-by: Jabber Developer <jabber.developer@jabber.space>
2025-06-20 18:20:47 +00:00

24 lines
296 B
C

#include <stdio.h>
#include <glib.h>
#include <stdlib.h>
void avatar_pep_subscribe(void) {};
gboolean
avatar_get_by_nick(const char* nick, gboolean open)
{
return TRUE;
}
gboolean
avatar_set(const char* path)
{
return TRUE;
}
gboolean
avatar_publishing_disable()
{
return TRUE;
}