From 05e1b5dc9d189e3129f8da2c6beacb014f3fd698 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Fri, 14 Dec 2018 15:36:58 +0100 Subject: ffi: Avoid inline function. - Inline functions make python-cffi choke on the header file. --- ffi/include/sequoia/openpgp.h | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) (limited to 'ffi/include') diff --git a/ffi/include/sequoia/openpgp.h b/ffi/include/sequoia/openpgp.h index c2702c95..0e0439f8 100644 --- a/ffi/include/sequoia/openpgp.h +++ b/ffi/include/sequoia/openpgp.h @@ -367,28 +367,10 @@ typedef enum sq_tag { SQ_TAG_PRIVATE3 = 63, } sq_tag_t; -static inline const char *sq_tag_to_string(sq_tag_t tag) { - switch (tag) { - case SQ_TAG_PKESK: return "PKESK"; - case SQ_TAG_SIGNATURE: return "SIGNATURE"; - case SQ_TAG_SKESK: return "SKESK"; - case SQ_TAG_ONE_PASS_SIG: return "ONE PASS SIG"; - case SQ_TAG_SECRET_KEY: return "SECRET KEY"; - case SQ_TAG_PUBLIC_KEY: return "PUBLIC KEY"; - case SQ_TAG_SECRET_SUBKEY: return "SECRET SUBKEY"; - case SQ_TAG_COMPRESSED_DATA: return "COMPRESSED DATA"; - case SQ_TAG_SED: return "SED"; - case SQ_TAG_MARKER: return "MARKER"; - case SQ_TAG_LITERAL: return "LITERAL"; - case SQ_TAG_TRUST: return "TRUST"; - case SQ_TAG_USER_ID: return "USER ID"; - case SQ_TAG_PUBLIC_SUBKEY: return "PUBLIC SUBKEY"; - case SQ_TAG_USER_ATTRIBUTE: return "USER ATTRIBUTE"; - case SQ_TAG_SEIP: return "SEIP"; - case SQ_TAG_MDC: return "MDC"; - default: return "OTHER"; - } -} +/*/ +/// Returns a human-readable tag name. +/*/ +const char *sq_tag_to_string (sq_tag_t tag); /*/ /// Opaque types for all the Packets that Sequoia understands. -- cgit v1.2.3