ref: 77054f29092ce5c26da6abb2ff5c43df59e85eac
dir: /demos/src/common.h/
/* * This is a cheap replacement for getopt() because that routine is not * available on some platforms and behaves differently on other platforms. * * This code is hereby expressly placed in the public domain. * [email protected] (Mark Leisher) * 10 October 1997 */ #ifndef _H_COMMON #define _H_COMMON /* Note that by default, both functions are implemented in common.c */ #ifdef __cplusplus extern "C" { #endif extern int opterr; extern int optind; extern char* optarg; extern int getopt( #ifdef __STDC__ int argc, char* const* argv, const char* pattern #endif ); extern char* ft_basename( #ifdef __STDC__ const char* name #endif ); /* print a message and exit */ extern void Panic ( #ifdef __STDC__ const char* fmt, ... #endif ); #ifdef __cplusplus } #endif #endif /* _H_COMMON */ /* End */