├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Readme.md ├── clib.json ├── deps ├── assertion-macros │ ├── assertion-macros.h │ └── package.json ├── console-colors │ ├── console-colors.c │ ├── console-colors.h │ └── package.json └── describe │ ├── describe.h │ └── package.json ├── flag.c ├── flag.h ├── flag_example.c └── flag_test.c /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | test 3 | example 4 | *.dSYM 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/Readme.md -------------------------------------------------------------------------------- /clib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/clib.json -------------------------------------------------------------------------------- /deps/assertion-macros/assertion-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/assertion-macros/assertion-macros.h -------------------------------------------------------------------------------- /deps/assertion-macros/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/assertion-macros/package.json -------------------------------------------------------------------------------- /deps/console-colors/console-colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/console-colors/console-colors.c -------------------------------------------------------------------------------- /deps/console-colors/console-colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/console-colors/console-colors.h -------------------------------------------------------------------------------- /deps/console-colors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/console-colors/package.json -------------------------------------------------------------------------------- /deps/describe/describe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/describe/describe.h -------------------------------------------------------------------------------- /deps/describe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/deps/describe/package.json -------------------------------------------------------------------------------- /flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/flag.c -------------------------------------------------------------------------------- /flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/flag.h -------------------------------------------------------------------------------- /flag_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/flag_example.c -------------------------------------------------------------------------------- /flag_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clibs/flag/HEAD/flag_test.c --------------------------------------------------------------------------------