Revision 384285f1e4152e7b962f0081e629c268bb50d8d7 authored by Jonas on 04 October 2023, 08:33:42 UTC, committed by Jonas on 04 October 2023, 08:33:42 UTC
1 parent ad43f9c
getopt.h
#ifndef GETOPT_H
#define GETOPT_H
int getopt(int nargc, char* const nargv[], const char* ostr);
extern int opterr, /* if error message should be printed */
optind, /* index into parent argv vector */
optopt, /* character checked for validity */
optreset; /* reset getopt */
extern char* optarg; /* argument associated with option */
#endif

Computing file changes ...