home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
TELECOM
/
stg_v4.lzh
/
stgver.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-11-11
|
460b
|
17 lines
#include <stdio.h>
#include <time.h>
struct tm *psTime;
long lTime;
main(argc,argv)
char **argv;
{
time(&lTime);
psTime=localtime(&lTime);
printf("#define STG_VER \"V4.%c.%02d%02d\"\n",
psTime->tm_year-91+'@',psTime->tm_mon+1,psTime->tm_mday);
printf("#define STGVER wstringf(2,\"\\nStG-Net %%s - Copyright (c) 1992 by Scott Griepentrog\\n5439 Longwoods Dr., Indianapolis IN 46254\\n(317)328-9285 FAX 328-0324\\n\\n\",STG_VER)\n");
}