more cleaning!!!

This commit is contained in:
2022-09-17 23:29:31 -04:00
parent 1aed01279b
commit fbdaf55d1c
10 changed files with 32 additions and 191 deletions
+16
View 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' };