d6cc0421d7f296cb5d18916e707c41f2311c5213
[runtime.git] / apps / irssi / src / common.h
1 #ifndef __COMMON_H
2 #define __COMMON_H
3
4 #define IRSSI_AUTHOR "Timo Sirainen <tss@iki.fi>"
5 #define IRSSI_WEBSITE "http://irssi.org/"
6
7 #define IRSSI_DIR_SHORT "~/.silc"
8 #define IRSSI_DIR_FULL "%s/.silc" /* %s == g_get_home_dir() */
9
10 #define IRSSI_GLOBAL_CONFIG "silc.conf" /* config file name in /etc/ */
11 #define IRSSI_HOME_CONFIG "silc.conf" /* config file name in ~/.irssi/ */
12
13 #ifdef HAVE_CONFIG_H
14 #include "config.h"
15 #endif
16
17 #include <stdio.h>
18 #include <stddef.h>
19 #include <stdarg.h>
20 #include <ctype.h>
21 #  ifdef HAVE_STRING_H
22 #include <string.h>
23 #endif
24 #ifdef HAVE_STDLIB_H
25 #  include <stdlib.h>
26 #endif
27 #include <errno.h>
28 #include <time.h>
29
30 #include <sys/types.h>
31 #ifdef HAVE_SYS_TIME_H
32 #  include <sys/time.h>
33 #endif
34 #include <sys/stat.h>
35
36 #ifdef HAVE_UNISTD_H
37 #  include <unistd.h>
38 #endif
39 #ifdef HAVE_DIRENT_H
40 #  include <dirent.h>
41 #endif
42 #include <fcntl.h>
43 #ifdef WIN32
44 #  include <win32-compat.h>
45 #endif
46
47 #include <glib.h>
48 #ifdef HAVE_GMODULE
49 #  include <gmodule.h>
50 #endif
51
52 /* input functions */
53 #define G_INPUT_READ    (1 << 0)
54 #define G_INPUT_WRITE   (1 << 1)
55
56 typedef void (*GInputFunction) (void *data, GIOChannel *source, int condition);
57
58 int g_input_add(GIOChannel *source, int condition,
59                 GInputFunction function, void *data);
60 int g_input_add_full(GIOChannel *source, int priority, int condition,
61                      GInputFunction function, void *data);
62
63 /* return full path for ~/.irssi */
64 const char *get_irssi_dir(void);
65 /* return full path for ~/.irssi/config */
66 const char *get_irssi_config(void);
67
68 /* max. size for %d */
69 #define MAX_INT_STRLEN ((sizeof(int) * CHAR_BIT + 2) / 3 + 1)
70
71 #define g_free_not_null(a) g_free(a)
72
73 #define g_free_and_null(a) \
74         G_STMT_START { \
75           if (a) { g_free(a); (a) = NULL; } \
76         } G_STMT_END
77
78 /* ctype.h isn't safe with chars, use our own instead */
79 #define i_toupper(x) toupper((int) (unsigned char) (x))
80 #define i_tolower(x) tolower((int) (unsigned char) (x))
81 #define i_isalnum(x) isalnum((int) (unsigned char) (x))
82 #define i_isalpha(x) isalpha((int) (unsigned char) (x))
83 #define i_isascii(x) isascii((int) (unsigned char) (x))
84 #define i_isblank(x) isblank((int) (unsigned char) (x))
85 #define i_iscntrl(x) iscntrl((int) (unsigned char) (x))
86 #define i_isdigit(x) isdigit((int) (unsigned char) (x))
87 #define i_isgraph(x) isgraph((int) (unsigned char) (x))
88 #define i_islower(x) islower((int) (unsigned char) (x))
89 #define i_isprint(x) isprint((int) (unsigned char) (x))
90 #define i_ispunct(x) ispunct((int) (unsigned char) (x))
91 #define i_isspace(x) isspace((int) (unsigned char) (x))
92 #define i_isupper(x) isupper((int) (unsigned char) (x))
93 #define i_isxdigit(x) isxdigit((int) (unsigned char) (x))
94
95 typedef struct _IPADDR IPADDR;
96 typedef struct _CONFIG_REC CONFIG_REC;
97 typedef struct _CONFIG_NODE CONFIG_NODE;
98
99 typedef struct _LINEBUF_REC LINEBUF_REC;
100 typedef struct _NET_SENDBUF_REC NET_SENDBUF_REC;
101 typedef struct _RAWLOG_REC RAWLOG_REC;
102
103 typedef struct _CHATNET_REC CHATNET_REC;
104 typedef struct _SERVER_REC SERVER_REC;
105 typedef struct _WI_ITEM_REC WI_ITEM_REC;
106 typedef struct _CHANNEL_REC CHANNEL_REC;
107 typedef struct _QUERY_REC QUERY_REC;
108 typedef struct _NICK_REC NICK_REC;
109
110 typedef struct _SERVER_CONNECT_REC SERVER_CONNECT_REC;
111 typedef struct _SERVER_SETUP_REC SERVER_SETUP_REC;
112 typedef struct _CHANNEL_SETUP_REC CHANNEL_SETUP_REC;
113
114 typedef struct _WINDOW_REC WINDOW_REC;
115
116 #endif