Name: Anonymous 2012-11-13 8:00
I have a great CLI library, /prog/, which I'm going to call CLIT. My question is whether to go ahead and actually release it as CLIT? I'm using my real name on the library.
#include <stdio.h>
#include <signal.h>
void
interrupts_handler ( int whocares )
{
}
int
main ( void )
{
static char BUFFA [ 1024*1024 ];
signal ( SIGINT, interrupts_handler );
while ( 1 )
{
/* MY SYSTEM WARMS THE USER IF I USE gets()
* >:I >:I >:I IM SO MAD */
fgets ( BUFFA,1024*1024,stdin );
puts ( "?" );
}
}