home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / splint3s.zip / splint-3.0.1.6 / test / format.c < prev    next >
Text File  |  2001-07-03  |  117b  |  8 lines

  1. void fn (FILE *f, char *fmt)
  2. {
  3.   printf (fmt); 
  4.   printf ("%s", fmt);
  5.   fprintf (f, fmt);
  6.   fprintf (f, fmt, fmt);
  7. }
  8.