diff options
Diffstat (limited to 'sig_notation_add.c')
-rw-r--r-- | sig_notation_add.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sig_notation_add.c b/sig_notation_add.c new file mode 100644 index 0000000..9259443 --- /dev/null +++ b/sig_notation_add.c @@ -0,0 +1,12 @@ +/* See LICENSE file for copyright and license details. */ +#include "internal.h" + + +gpgme_error_t +liberror_gpgme_sig_notation_add(gpgme_ctx_t ctx, const char *name, const char *value, gpgme_sig_notation_flags_t flags) +{ + gpgme_error_t ret = gpgme_sig_notation_add(ctx, name, value, flags); + if (ret) + liberror_gpgme_set_error("gpgme_sig_notation_add", ret); + return ret; +} |