Update gnulib files.
[gsasl.git] / src / internal.h
blobe099abdf40d3caa2b6a0c3207571405037a2dcf2
1 /* internal.h --- internal header file for gsasl
2 * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Simon Josefsson
4 * This file is part of GNU SASL.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef _INTERNAL_H
22 #define _INTERNAL_H
24 #if HAVE_CONFIG_H
25 # include "config.h"
26 #endif
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <stdarg.h>
31 #include <ctype.h>
32 #include <string.h>
33 #include <errno.h>
34 #include <stdbool.h>
36 #include <sys/types.h>
37 #include <sys/socket.h> /* for AF_INET */
38 #include <sys/select.h> /* select() */
40 #include <unistd.h>
41 #ifdef HAVE_NETDB_H
42 # include <netdb.h>
43 #endif
44 #ifdef HAVE_SYS_TIME_H
45 # include <sys/time.h> /* select() */
46 #endif
47 #ifdef HAVE_PWD_H
48 # include <pwd.h> /* getpwnam */
49 #endif
50 #ifdef HAVE_NETINET_IN_H
51 # include <netinet/in.h>
52 #endif
54 #include <gsasl.h>
56 /* Gnulib. */
57 #include "progname.h"
58 #include "error.h"
59 #include "getpass.h"
60 #include "getaddrinfo.h"
61 #include "readline.h"
62 #include "quote.h"
64 /* Get i18n. */
65 #include <gettext.h>
66 #ifdef HAVE_LOCALE_H
67 # include <locale.h>
68 #else
69 # define setlocale(Category, Locale) /* empty */
70 #endif
71 #define _(String) gettext (String)
72 #define gettext_noop(String) String
73 #define N_(String) gettext_noop (String)
75 extern int writeln (const char *str);
76 extern int readln (char **out);
78 #include "gsasl_cmd.h"
79 extern struct gengetopt_args_info args_info;
81 #endif /* _INTERNAL_H */