acl  3.5.3.0
acl_getopt.h
浏览该文件的文档.
1 #ifndef ACL_GETOPT_INCLUDE_H
2 #define ACL_GETOPT_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include "acl_define.h"
9 
10 extern ACL_API int acl_optind;
11 extern ACL_API char *acl_optarg;
12 
13 ACL_API void acl_getopt_init(void);
14 ACL_API int acl_getopt(int argc, char *argv[], const char *opts);
15 
16 #if defined(_WIN32) || defined(_WIN64)
17 # define optind acl_optind
18 # define optarg acl_optarg
19 # define getopt_init acl_getopt_init
20 # define getopt acl_getopt
21 #endif
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 #endif
27 
ACL_API char * acl_optarg
ACL_API int acl_getopt(int argc, char *argv[], const char *opts)
ACL_API void acl_getopt_init(void)
ACL_API int acl_optind