1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-15 19:38:07 -04:00
profanity/tests/pgp/stub_gpg.c

18 lines
213 B
C
Raw Normal View History

2015-03-21 20:12:14 -04:00
#include <glib.h>
#include "pgp/gpg.h"
2015-03-21 20:12:14 -04:00
void p_gpg_init(void) {}
2015-03-21 20:29:57 -04:00
2015-03-21 20:12:14 -04:00
GSList* p_gpg_list_keys(void)
{
return NULL;
}
2015-03-21 20:29:57 -04:00
const char* p_gpg_libver(void) {
return NULL;
}
void p_gpg_free_key(ProfPGPKey *key) {}