├── .gitignore ├── .npmrc ├── LICENSE ├── Makefile ├── README.md ├── clib.json ├── decode.c ├── encode.c ├── package.json ├── scripts └── update-clib-json ├── test ├── common.h ├── decode.c ├── encode.c └── test.c └── utf8.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" 2 | message="chore(release): %s :tada:" 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/README.md -------------------------------------------------------------------------------- /clib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/clib.json -------------------------------------------------------------------------------- /decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/decode.c -------------------------------------------------------------------------------- /encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/encode.c -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/package.json -------------------------------------------------------------------------------- /scripts/update-clib-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/scripts/update-clib-json -------------------------------------------------------------------------------- /test/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/test/common.h -------------------------------------------------------------------------------- /test/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/test/decode.c -------------------------------------------------------------------------------- /test/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/test/encode.c -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/test/test.c -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/libutf8/HEAD/utf8.h --------------------------------------------------------------------------------