*push*
[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
15 #if __GNUC__ >= 2
16 #define UNUSED_ARG(ARG) ARG __attribute__((unused))
17 #elif defined(S_SPLINT_S)
18 #define UNUSED_ARG(ARG) /*@unused@*/ ARG
19 #define const /*@observer@*/ /*@temp@*/
20 #else
21 #define UNUSED_ARG(ARG) ARG
22 #endif
23
24 int stricmp (const char *s1, const char *s2)
25 {
26    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
27    if (s2 == NULL) return *s1;
28    char c1, c2;
29    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
30    {
31      if (*s1 == '\0') break;
32      ++s1; ++s2;
33    }
34    return c1 - c2;
35 }
36
37
38 #define NICKLEN         30
39 #define USERLEN         10
40 #define HOSTLEN         63
41 #define REALLEN         50
42 #define TOPICLEN        500
43 #define CHANNELLEN      200
44
45 //valid nick chars
46 #define VALID_NICK_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890{|}~[\\]^_`"
47 //the first char is a little bit different
48 //                              0        1         2         3         4         5          6
49 //                              1234567890123456789012345678901234567890123456789012345678 9012   62
50 #define VALID_NICK_CHARS_FIRST "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~[\\]^_`"
51 #define VALID_NICK_CHARS_FIRST_LEN 62
52
53 #endif