├── .gitignore ├── LICENSE ├── README.md ├── common.h ├── crstrlib.c ├── crstrlib.h └── test_crstrlib.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/README.md -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/common.h -------------------------------------------------------------------------------- /crstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/crstrlib.c -------------------------------------------------------------------------------- /crstrlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/crstrlib.h -------------------------------------------------------------------------------- /test_crstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mushroom-x/CRStrLib/HEAD/test_crstrlib.c --------------------------------------------------------------------------------