1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/tests/unittests/xmpp/stub_avatar.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
295 B
C
Raw Normal View History

2019-12-18 09:44:59 -05:00
#include <stdio.h>
#include <glib.h>
#include <stdlib.h>
void avatar_pep_subscribe(void){};
2019-12-18 09:44:59 -05:00
gboolean
avatar_get_by_nick(const char* nick, gboolean open)
2019-12-18 09:44:59 -05:00
{
return TRUE;
}
gboolean
avatar_set(const char* path)
{
return TRUE;
}
gboolean
avatar_publishing_disable()
{
return TRUE;
}