home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / common / identify.c < prev    next >
C/C++ Source or Header  |  1992-02-10  |  442b  |  22 lines

  1. #include "../h/gsupport.h"
  2. #include "../h/version.h"
  3.  
  4. extern char *progname;
  5.  
  6. novalue id_comment(f)
  7. FILE *f;
  8.    {
  9.    static char sbuf[26];
  10.    static first_time = 1;
  11.  
  12.    if (first_time) {
  13.       first_time = 0;
  14.       getctime(sbuf);
  15.       }
  16.    fprintf(f, "/*\n");
  17.    fprintf(f, " * %s", sbuf);
  18.    fprintf(f, " * This file was produced by\n");
  19.    fprintf(f, " *   %s: %s\n", progname, Version);
  20.    fprintf(f, " */\n");
  21.    }
  22.