|
- /*
- * zzuf - general purpose fuzzer
- * Copyright (c) 2002, 2007 Sam Hocevar <sam@zoy.org>
- * All Rights Reserved
- *
- * $Id: mygetopt.h 268 2007-02-01 22:33:07Z sam $
- *
- * This program is free software. It comes without any warranty, to
- * the extent permitted by applicable law. You can redistribute it
- * and/or modify it under the terms of the Do What The Fuck You Want
- * To Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- */
-
- /*
- * mygetopt.h: getopt_long reimplementation
- */
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- struct myoption
- {
- const char *name;
- int has_arg;
- int *flag;
- int val;
- };
-
- extern int myoptind;
- extern char *myoptarg;
-
- int mygetopt(int, char * const[], const char *, const struct myoption *, int *);
-
- #ifdef __cplusplus
- }
- #endif
|