No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

30 líneas
760 B

  1. /*
  2. * TOIlet The Other Implementation’s letters
  3. * Copyright (c) 2002-2010 Sam Hocevar <sam@hocevar.net>
  4. * All Rights Reserved
  5. *
  6. * This program is free software. It comes without any warranty, to
  7. * the extent permitted by applicable law. You can redistribute it
  8. * and/or modify it under the terms of the Do What The Fuck You Want
  9. * To Public License, Version 2, as published by Sam Hocevar. See
  10. * http://sam.zoy.org/wtfpl/COPYING for more details.
  11. */
  12. /*
  13. * mygetopt.h: getopt_long reimplementation
  14. */
  15. struct myoption
  16. {
  17. const char *name;
  18. int has_arg;
  19. int *flag;
  20. int val;
  21. };
  22. extern int myoptind;
  23. extern char *myoptarg;
  24. int mygetopt(int, char * const[], const char *, const struct myoption *, int *);