about summary refs log tree commit diff stats
path: root/tests/unittests/xmpp/stub_avatar.c
blob: fd63293ec179e2fe175edede44da6fc155f47705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}