Crossfire Client, Branches  R11627
second.c
Go to the documentation of this file.
1 #include <stdio.h>
2 
3 int main (){
4  char buf[200];
5  int len;
6  fprintf (stdout,"monitor\n");
7  fflush (stdout);
8  for(;;){
9  len=read (0,buf,150);
10  if (len)
11  write (2,buf,len);
12  else
13  exit(-1);
14  }
15 }
int main()
Definition: second.c:3