alright, so i'm using a sighandler to interpret some signal, for this purpose it is ctrl-c, so when ctrl-c is typed some action will be taken, and everything is fine and dandy, but what I really need is for this to happen without ^c appearing in the input/output
for example let's say i have this code
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
void siginthandler(int param)
{
printf("User pressed Ctrl+C\n");
exit(1);
}
int main()
{
signal(SIGINT, siginthandler);
while(1);
return 0;
}
the output would be
^CUser pressed Ctrl+C
how could i get this to simply be
User pressed Ctrl+C?
>outputand observe that the ^C still appears in your terminal window, but does not appear in the output file. – Kamal Nov 17 '10 at 4:09