home *** CD-ROM | disk | FTP | other *** search
/ Dream 45 / Amiga_Dream_45.iso / Amiga / Magazine / Dossier-LaTeX / AmiWeb2C.lha / source / web2c-6.1 / web2c / lib / getopt.ch < prev    next >
Text File  |  1995-03-23  |  532b  |  40 lines

  1. Changes for GETOPT.C by Andreas Scherer, March 23, 1995.
  2.  
  3. @x l.30
  4. #ifdef HAVE_CONFIG_H
  5. #include "config.h"
  6. #endif
  7. @y
  8. #include "andyconfig.h"
  9. @z
  10.  
  11. @x l.177
  12. my_index (str, chr)
  13.      const char *str;
  14.      int chr;
  15. @y
  16. my_index (
  17.      const char *str,
  18.      int chr)
  19. @z
  20.  
  21. @x l.225
  22. exchange (argv)
  23.      char **argv;
  24. @y
  25. exchange (
  26.      char **argv)
  27. @z
  28.  
  29. @x l.672
  30. getopt (argc, argv, optstring)
  31.      int argc;
  32.      char *const *argv;
  33.      const char *optstring;
  34. @y
  35. getopt (
  36.      int argc,
  37.      char *const *argv,
  38.      const char *optstring)
  39. @z
  40.