15 lines
241 B
C
15 lines
241 B
C
#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;
|
|
}
|
|
|