root/liboggz/trunk/win32/getopt.h
| Revision 353, 349 bytes (checked in by zen, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | /** |
| 2 | * @file getopt.h |
| 3 | * @ingroup wbxml2xml_tool |
| 4 | * @ingroup xml2wbxml_tool |
| 5 | * |
| 6 | * @author Kannel Team (http://www.kannel.org/) |
| 7 | * |
| 8 | * @brief getopt() implementation |
| 9 | */ |
| 10 | |
| 11 | #ifndef WBXML_GETOPT_H |
| 12 | #define WBXML_GETOPT_H |
| 13 | |
| 14 | int getopt(int argc, char **argv, char *opts); |
| 15 | extern int opterr; |
| 16 | extern int optind; |
| 17 | extern int optopt; |
| 18 | extern char *optarg; |
| 19 | |
| 20 | #endif |
| 21 |
Note: See TracBrowser for help on using the browser.