1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -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 Permalink Normal View History

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