template DECLARE_ASN1_ENCODE_FUNCTIONS_const(string type, string name)
extern (C) nothrow
enum DECLARE_ASN1_ENCODE_FUNCTIONS_const =
"
" ~ type ~ "* d2i_" ~ name ~ "(" ~ type ~ "** a, const(ubyte)** in_, c_long len);
int i2d_" ~ name ~ "(const(" ~ type ~ ")* a, ubyte** out_);
" ~ DECLARE_ASN1_ITEM!name;