Add command line interface to library.
[libidn.git] / stringprep_xmpp.h
blobe9195c96d04f10b4238e4a0ab26f8404c5fe7b94
1 /* stringprep_xmpp.h XMPP stringprep profile -*- c -*-
2 * Copyright (C) 2003 Simon Josefsson
4 * This file is part of GNU Libidn.
6 * GNU Libidn is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * GNU Libidn is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with GNU Libidn; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef _STRINGPREP_XMPP_H
23 #define _STRINGPREP_XMPP_H
25 #ifdef __cplusplus
26 extern "C"
28 #if 0 /* keep Emacsens's auto-indent happy */
30 #endif
31 #endif
33 #include <stringprep.h>
35 extern Stringprep_profile stringprep_xmpp_nodeprep[];
36 extern Stringprep_profile stringprep_xmpp_resourceprep[];
37 extern Stringprep_table_element stringprep_xmpp_nodeprep_prohibit[];
39 #define stringprep_xmpp_nodeprep(in, maxlen) \
40 stringprep(in, maxlen, 0, stringprep_xmpp_nodeprep)
41 #define stringprep_xmpp_resourceprep(in, maxlen) \
42 stringprep(in, maxlen, 0, stringprep_xmpp_resourceprep)
44 #ifdef __cplusplus
46 #endif
47 #endif /* _STRINGPREP_XMPP_H */