Files
cproof/tests/pgp/stub_gpg.c
2015-03-22 01:03:06 +00:00

18 lines
213 B
C

#include <glib.h>
#include "pgp/gpg.h"
void p_gpg_init(void) {}
GSList* p_gpg_list_keys(void)
{
return NULL;
}
const char* p_gpg_libver(void) {
return NULL;
}
void p_gpg_free_key(ProfPGPKey *key) {}