1: #include <stdio.h>
   2: 
   3: s_stop(s, n)
   4: char *s;
   5: long int n;
   6: {
   7: int i;
   8: 
   9: if(n > 0)
  10:     {
  11:     fprintf(stderr, "STOP ");
  12:     for(i = 0; i<n ; ++i)
  13:         putc(*s++, stderr);
  14:     fprintf(stderr, " statement executed\n");
  15:     }
  16: f_exit();
  17: exit(0);
  18: }

Defined functions

s_stop defined in line 3; never used
Last modified: 1979-01-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 444
Valid CSS Valid XHTML 1.0 Strict