|
|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T u
Length: 554 (0x22a)
Types: TextFile
Names: »unixstat.c«
└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
└─⟦this⟧ »cph85dist/stat/doc/unixstat.c«
└─⟦this⟧ »cph85dist/stat/src/unixstat.c«
#include "unixstat.h"
PGM(name,purpose,version,date)
main (argc, argv) char **argv;
{
int optind;
ARGV0;
optind = initial (argc, argv);
checkstdin (Argv0);
if (optind == argc) /* no operands */
{
}
else while (optind < argc)
{
}
exit (0);
}
/* OPTIONS */
#define OPTSTRING ""
initial (argc, argv) char **argv;
{
extern char *optarg;
extern int optind;
int errflg = 0;
int C;
while ((C = getopt (argc, argv, OPTSTRING)) != EOF)
switch (C)
{
default: errflg++; break;
}
if (errflg)
USAGE ()
return (optind);
}