├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── snippets.md ├── str.c ├── str.h ├── str_test.c └── tools ├── file-to-str └── gen_char_class.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/README.md -------------------------------------------------------------------------------- /snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/snippets.md -------------------------------------------------------------------------------- /str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/str.c -------------------------------------------------------------------------------- /str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/str.h -------------------------------------------------------------------------------- /str_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/str_test.c -------------------------------------------------------------------------------- /tools/file-to-str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/tools/file-to-str -------------------------------------------------------------------------------- /tools/gen_char_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxim2266/str/HEAD/tools/gen_char_class.c --------------------------------------------------------------------------------