Lines Matching defs:version
70 * Define mapping/checking functions for each version of the draft.
82 char *version;
88 #define MAKE_NAMEPREP_HANDLE(version, id) \
89 { version, \
103 idn_nameprep_create(const char *version, idn_nameprep_t *handlep) {
108 TRACE(("idn_nameprep_create(version=%-.50s)\n",
109 version == NULL ? "<NULL>" : version));
111 if (version == NULL)
112 version = IDN_NAMEPREP_CURRENT;
115 * Lookup table for the specified version. Since the number of
119 for (handle = nameprep_versions; handle->version != NULL; handle++) {
120 if (strcmp(handle->version, version) == 0) {
143 handle->version, idn__debug_ucs4xstring(from, 50)));
207 handle->version, idn__debug_ucs4xstring(str, 50)));
217 TRACE(("idn_nameprep_isunassigned(handle->version, str=\"%s\")\n",
218 handle->version, idn__debug_ucs4xstring(str, 50)));
259 handle->version, idn__debug_ucs4xstring(str, 50)));