include <time.h>
[NeonServV5.git] / main.h
1 #ifndef _main_h
2 #define _main_h
3
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <ctype.h>
8 #include <sys/types.h>
9 #include <sys/socket.h>
10 #include <netinet/in.h>
11 #include <arpa/inet.h>
12 #include <unistd.h>
13 #include <netdb.h>
14 #include <stdarg.h>
15 #include <time.h>
16
17 #if __GNUC__
18 #define PRINTF_LIKE(M,N) __attribute__((format (printf, M, N)))
19 #else
20 #define PRINTF_LIKE(M,N)
21 #endif
22
23 #if __GNUC__ >= 2
24 #define UNUSED_ARG(ARG) ARG __attribute__((unused))
25 #elif defined(S_SPLINT_S)
26 #define UNUSED_ARG(ARG) /*@unused@*/ ARG
27 #define const /*@observer@*/ /*@temp@*/
28 #else
29 #define UNUSED_ARG(ARG) ARG
30 #endif
31
32 int stricmp (const char *s1, const char *s2)
33 {
34    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
35    if (s2 == NULL) return *s1;
36    char c1, c2;
37    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
38    {
39      if (*s1 == '\0') break;
40      ++s1; ++s2;
41    }
42    return c1 - c2;
43 }
44
45 #define SOCKET_SELECT_TIME 2
46
47 #define NICKLEN         30
48 #define USERLEN         10
49 #define AUTHLEN         32
50 #define HOSTLEN         63
51 #define REALLEN         50
52 #define TOPICLEN        500
53 #define CHANNELLEN      200
54 #define MAXLEN          512
55
56 //valid nick chars
57 #define VALID_NICK_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890{|}~[\\]^_`"
58 //the first char is a little bit different
59 //                              0        1         2         3         4         5          6
60 //                              1234567890123456789012345678901234567890123456789012345678 9012   62
61 #define VALID_NICK_CHARS_FIRST "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~[\\]^_`"
62 #define VALID_NICK_CHARS_FIRST_LEN 62
63
64 #define TEMPUSER_LIST_INDEX VALID_NICK_CHARS_FIRST_LEN
65
66 #endif