This commit is contained in:
2023-12-22 22:53:54 -05:00
commit 2821b7e9a1
45 changed files with 8425 additions and 0 deletions

14
logsrv/com.c Normal file
View File

@@ -0,0 +1,14 @@
#include <stdio.h>
#include "config.h"
extern char *sptr,sockbuf[512];
/* i kept this seperate for ease in adding future commands. */
void bbs_com(sck)
int sck;
{
if(!match(sockbuf,"irc")) irc(sck,0);
else irc(sck,0);
return;
}