Cosmetic fix.
[libidn.git] / internal.h
blob09e527a6e53bd5589e2e84aa72bd3ae30cc99129
1 /* internal.h internal header file for libstringprep
2 * Copyright (C) 2002 Simon Josefsson
4 * This file is part of Libstringprep.
6 * Libstringprep 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 * Libstringprep 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 Libstringprep; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifndef _INTERNAL_H
24 #define _INTERNAL_H
26 #if HAVE_CONFIG_H
27 #include "config.h"
28 #endif
30 #ifdef STDC_HEADERS
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <stdarg.h>
34 #include <ctype.h>
35 #endif
37 #if HAVE_UNISTD_H
38 #include <unistd.h>
39 #endif
41 #ifdef HAVE_SYS_TYPES_H
42 #include <sys/types.h>
43 #endif
45 #ifdef HAVE_ERRNO_H
46 #include <errno.h>
47 #endif
49 #if HAVE_INTTYPES_H
50 # include <inttypes.h>
51 #else
52 # if HAVE_STDINT_H
53 # include <stdint.h>
54 # endif
55 #endif
57 #if HAVE_STRING_H
58 # if !STDC_HEADERS && HAVE_MEMORY_H
59 # include <memory.h>
60 # endif
61 # include <string.h>
62 #endif
63 #if HAVE_STRINGS_H
64 # include <strings.h>
65 #endif
67 #include "stringprep.h"
68 #include "stringprep_generic.h"
70 #endif /* _INTERNAL_H */