getopt.h 413 B

1234567891011121314151617
  1. /* Copyright (C) 1996 Robert de Bath <rdebath@cix.compulink.co.uk>
  2. * This file is part of the Linux-8086 C library and is distributed
  3. * under the GNU Library General Public License.
  4. */
  5. #ifndef __GETOPT_H
  6. #define __GETOPT_H
  7. #include <features.h>
  8. extern char *optarg;
  9. extern int opterr;
  10. extern int optind;
  11. extern int getopt __P((int argc, char *const *argv, const char *shortopts));
  12. #endif /* __GETOPT_H */