Simple library for dealing with UTF-8 BOM (Byte Order Mark)

Piotr Czajkowski 4f0822eb70 Be consistent пре 3 година
.github 37b6c14153 Create main.yml пре 4 година
.gitignore f6b70503dd Added bomToolkit пре 6 година
LICENSE.md eda3d65bad License пре 6 година
README.md 2d800ca762 No Windows пре 4 година
bom.c 4f0822eb70 Be consistent пре 3 година
bom.h 3a5b10a653 Additional error checking пре 4 година
bomToolkit.c e1cf7b80fb Maybe a bit cleaner пре 3 година
makefile 2d800ca762 No Windows пре 4 година
testBOM daf7382543 First version пре 6 година
testNoBOM daf7382543 First version пре 6 година
test_bom.c 7eabf2a642 Better errors, I hope пре 4 година

README.md

BOM

I've written it for fun and because BOM is still a valid problem in l10n world. It's simple and relies only on standard libraries, so should work pretty much everywhere.

It contains simple test which you can run by:

make test

I've also added simple wrapper, so you can use it as executable:

Usage:
./bomToolkit <filePath> c - to check for BOM.
./bomToolkit <filePath> r - to remove BOM.
./bomToolkit <filePath> a - to add BOM.

It's 22 times faster than similar one I've written in C#, so either C is faster at that or I've written it better:) Enjoy!

As always, you can use it as you want, but I give you no warranty.