DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T u

⟦e1a48d0a8⟧ TextFile

    Length: 554 (0x22a)
    Types: TextFile
    Names: »unixstat.c«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/stat/doc/unixstat.c« 
    └─ ⟦this⟧ »cph85dist/stat/src/unixstat.c« 

TextFile

#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);
	}