├── .gitignore ├── Makefile ├── README ├── create-dist.sh ├── gnu_getopt.c └── gnu_getopt.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | *.so 4 | 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabotage-linux/gnu-getopt/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabotage-linux/gnu-getopt/HEAD/README -------------------------------------------------------------------------------- /create-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabotage-linux/gnu-getopt/HEAD/create-dist.sh -------------------------------------------------------------------------------- /gnu_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabotage-linux/gnu-getopt/HEAD/gnu_getopt.c -------------------------------------------------------------------------------- /gnu_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabotage-linux/gnu-getopt/HEAD/gnu_getopt.h --------------------------------------------------------------------------------