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 m

⟦4b89f3f33⟧ TextFile

    Length: 652 (0x28c)
    Types: TextFile
    Names: »mkprog.h«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/mkprog/mkprog.h« 

TextFile

/*	 "$Header: mkprog.h,v 1.1 86/05/19 16:32:46 root Exp $"	*/
#include <stdio.h>
#include <ctype.h>

typedef enum {false=0, true=1} bool;

int optind;
int opterr;
char *optarg;

char *progname;

bool f_flag;	/* true if program does not read files */
bool h_flag;	/* true if want to generate .h file */
bool R_flag;	/* true if want RCS header, default set in Makefile */
bool S_flag;	/* true if want SCCS header, default set in Makefile */

int t_val;	/* spaces indented or size of tab, default set in Makefile */

char *h_string;	/* pointer to name of .h file */
char *n_string;	/* pointer to name of .c file */
char *o_string;	/* string of options */