home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / emacs_src.lha / src / amiga / emacs-18.59 / emacs-18.59-amiga / shortnames / defines.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-09-04  |  178 b   |  15 lines

  1. #include <stdio.h>
  2.  
  3. int count;
  4.  
  5. main ()
  6. {
  7.     char buffer[512];
  8.  
  9.     while (gets (buffer))
  10.       {
  11.     printf ("#define %s zz%4.4dzz\n", buffer, count++);
  12.       }
  13.     return (0);
  14. }
  15.