logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

getopt_nolong.c (676B)


  1. // utils-std: Collection of commonly available Unix tools
  2. // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. // SPDX-License-Identifier: MPL-2.0
  4. #define _POSIX_C_SOURCE 200809L
  5. #include "getopt_nolong.h"
  6. #include <stdio.h> // fprintf
  7. #include <unistd.h> // getopt
  8. bool got_long_opt = false;
  9. int
  10. getopt_nolong(int argc, char *const argv[], const char *optstring)
  11. {
  12. if(argv[optind] && argv[optind][0] == '-' && argv[optind][1] == '-' && argv[optind][2] != '\0')
  13. {
  14. fprintf(stderr, "%s: error: Long options unsupported: '%s'\n", argv0, argv[optind]);
  15. got_long_opt = true;
  16. return '?';
  17. }
  18. return getopt(argc, argv, optstring);
  19. }