home *** CD-ROM | disk | FTP | other *** search
/ DEFCON 15 / DefCon15.bin / Speakers / Jennings / Extras / incognito / XGetopt.h < prev   
C/C++ Source or Header  |  2007-03-11  |  691b  |  27 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. // XGetopt.h  Version 1.2
  3. //
  4. // Author:  Hans Dietrich
  5. //          hdietrich2@hotmail.com
  6. //
  7. // This software is released into the public domain.
  8. // You are free to use it in any way you like.
  9. //
  10. // This software is provided "as is" with no expressed
  11. // or implied warranty.  I accept no liability for any
  12. // damage or loss of business that this software may cause.
  13. //
  14. ///////////////////////////////////////////////////////////////////////////////
  15.  
  16. #ifndef XGETOPT_H
  17. #define XGETOPT_H
  18.  
  19.  
  20. int optind, opterr;
  21. char *optarg;
  22.  
  23. int getopt(int argc, char *argv[], char *optstring);
  24.  
  25.  
  26. #endif
  27.