Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef GETOPT_H
  2. #define GETOPT_H
  3.  
  4. extern int optind, opterr;
  5. extern char *optarg;
  6.  
  7. int getopt(int argc, char *argv[], char *optstring);
  8.  
  9. #endif
  10.