| OLD | NEW |
| 1 /* |
| 2 Copyright (C) 1997 Gregory Pietsch |
| 3 |
| 4 [These files] are hereby placed in the public domain without restrictions. Just |
| 5 give the author credit, don't claim you wrote it or prevent anyone else from |
| 6 using it. |
| 7 */ |
| 8 |
| 1 #ifndef GETOPT_H | 9 #ifndef GETOPT_H |
| 2 #define GETOPT_H | 10 #define GETOPT_H |
| 3 | 11 |
| 4 /* include files needed by this include file */ | 12 /* include files needed by this include file */ |
| 5 | 13 |
| 6 /* macros defined by this include file */ | 14 /* macros defined by this include file */ |
| 7 #define no_argument 0 | 15 #define no_argument 0 |
| 8 #define required_argument 1 | 16 #define required_argument 1 |
| 9 #define OPTIONAL_ARG 2 | 17 #define OPTIONAL_ARG 2 |
| 10 | 18 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 const GETOPT_LONG_OPTION_T * longopts, int *longind); | 54 const GETOPT_LONG_OPTION_T * longopts, int *longind); |
| 47 | 55 |
| 48 #ifdef __cplusplus | 56 #ifdef __cplusplus |
| 49 }; | 57 }; |
| 50 | 58 |
| 51 #endif | 59 #endif |
| 52 | 60 |
| 53 #endif /* GETOPT_H */ | 61 #endif /* GETOPT_H */ |
| 54 | 62 |
| 55 /* END OF FILE getopt.h */ | 63 /* END OF FILE getopt.h */ |
| OLD | NEW |