Add.
[libidn.git] / lib / pr29.h
blob917fc65ac4b70fd0f227d57db9e863d3c4e99a89
1 /* pr29.h --- Detect strings which are non-idempotent under NFKC.
2 * Copyright (C) 2004 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 PR29_H
23 #define PR29_H
25 #ifdef __cplusplus
26 extern "C"
28 #endif
30 /* Get size_t. */
31 #include <stdlib.h>
33 /* Get uint32_t. */
34 #include <idn-int.h>
36 /* Error codes. */
37 typedef enum
39 PR29_SUCCESS = 0,
40 PR29_PROBLEM = 1, /* String is a problem sequence. */
41 PR29_STRINGPREP_ERROR = 2 /* Charset conversion failed (p29_8*). */
42 } Pr29_rc;
44 extern int pr29_4 (const uint32_t *in, size_t len);
45 extern int pr29_4z (const uint32_t *in);
46 extern int pr29_8z (const char *in);
48 #ifdef __cplusplus
50 #endif
51 #endif /* PR29_H */