Home
last modified time | relevance | path

Searched refs:is_keytype (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/crypto/conf/
H A Dconf_def.h30 #define IS_COMMENT(conf,c) is_keytype(conf, c, CONF_COMMENT)
31 #define IS_FCOMMENT(conf,c) is_keytype(conf, c, CONF_FCOMMENT)
32 #define IS_EOF(conf,c) is_keytype(conf, c, CONF_EOF)
33 #define IS_ESC(conf,c) is_keytype(conf, c, CONF_ESC)
34 #define IS_NUMBER(conf,c) is_keytype(conf, c, CONF_NUMBER)
35 #define IS_WS(conf,c) is_keytype(conf, c, CONF_WS)
36 #define IS_ALNUM(conf,c) is_keytype(conf, c, CONF_ALNUM)
37 #define IS_ALNUM_PUNCT(conf,c) is_keytype(conf, c, CONF_ALNUM_PUNCT)
38 #define IS_QUOTE(conf,c) is_keytype(conf, c, CONF_QUOTE)
39 #define IS_DQUOTE(conf,c) is_keytype(conf, c, CONF_DQUOTE)
[all …]
H A Dconf_def.c45 static int is_keytype(const CONF *conf, char c, unsigned short type);
891 static int is_keytype(const CONF *conf, char c, unsigned short type) in is_keytype() function