home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
emacs-19.28-src.tgz
/
tar.out
/
fsf
/
emacs
/
shortnames
/
defines.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
178b
|
15 lines
#include <stdio.h>
int count;
main ()
{
char buffer[512];
while (gets (buffer))
{
printf ("#define %s zz%4.4dzz\n", buffer, count++);
}
return (0);
}