more cleaning!!!
This commit is contained in:
16
irc/irc.c
Normal file
16
irc/irc.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* RFC 1459 1.2
|
||||
* 9 characters + nul terminator */
|
||||
static int nickname[9 + 1];
|
||||
|
||||
/* RFC 1459 1.3
|
||||
* 200 characters + nul terminator */
|
||||
static int channel[200 + 1];
|
||||
|
||||
/* RFC 1459 1.3
|
||||
* channel names cannot contain these characters */
|
||||
static int channel_restricted[] = { 0x07, ' ', ',', '\0' };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user