common.h
来自「Ftee type Demo for Linux open source」· C头文件 代码 · 共 60 行
H
60 行
/*
* 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.
* mleisher@crl.nmsu.edu (Mark Leisher)
* 10 October 1997
*/
#ifndef _H_COMMON
#define _H_COMMON
/* Note that by default, both functions are implemented in common.c */
#ifdef VMS
#define getopt local_getopt
#define optind local_optind
#define opterr local_opterr
#endif
#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 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?