/.lsp/.cache/

' href='https://git.tilde.institute/danisanti/profani-tty/atom/tests/unittests/xmpp/stub_avatar.c?h=main' type='application/atom+xml'/>
about summary refs log tree commit diff stats
path: root/tests/unittests/xmpp/stub_avatar.c
blob: 768a3aab9794738594cbd4f3fe0b0572b9a20c4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <glib.h>
#include <stdlib.h>

void avatar_pep_subscribe(void){};
gboolean
avatar_get_by_nick(const char* nick)
{
    return TRUE;
}

gboolean
avatar_set(const char* path)
{
    return TRUE;
}

gboolean
avatar_publishing_disable()
{
    return TRUE;
}