home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_07 / v7n7063a.txt < prev    next >
Text File  |  1989-09-05  |  255b  |  19 lines

  1.  
  2. Listing 5
  3.  
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void write_string (char *);
  8.  
  9. int main (void)
  10.    {
  11.    write_string("This is a test.");
  12.    }
  13.  
  14. void write_string(char *string)
  15.    {
  16.    write(fileno(stdout), string, strlen(string));
  17.    }
  18.  
  19.