home *** CD-ROM | disk | FTP | other *** search
/ DEFCON 15 / DefCon15.bin / Speakers / Jennings / Extras / incognito / incognito.c < prev    next >
C/C++ Source or Header  |  2007-03-11  |  373b  |  25 lines

  1. #define _CRT_SECURE_NO_DEPRECATE 1
  2. #include <stdio.h>
  3. #include <assert.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <windows.h>
  7. #include "handle_arguments.h"
  8.  
  9. void usage(char*);
  10.  
  11. int main(int argc, char *argv[])
  12. {
  13.     INPUT = stdin;
  14.     OUTPUT = stdout;
  15.  
  16.     if (argc == 1)
  17.     {
  18.         usage(argv[0]);
  19.         return 1;
  20.     }
  21.  
  22.     handle_options(argc,argv);
  23.     exit(0);
  24. }
  25.