|
|
researchv10 Norman
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
struct stat buf;
struct tm *tm;
struct tm *localtime();
main(argc,argv)
char **argv;
{
if(argc<=1)
return(0);
if(stat(argv[1],&buf)==-1)
return(0);
tm = localtime(&buf.st_mtime);
printf("-rd%d -rm%d -ry%d\n",
tm->tm_mday,tm->tm_mon,tm->tm_year);
return(0);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.