Skip to content

Releases: AraHaan/bin2c

bin2c v0.15.0 - Windows/Linux/MAC - [FINAL]

26 Aug 17:22
Compare
Choose a tag to compare

bin2c v0.14.0 - Windows/Linux/MAC - [FINAL]

01 Jan 12:02
Compare
Choose a tag to compare
Changes in v0.14.0:

1. Changed Header File to not have any defines except for the multi-platform
    include guard.
2. Replaced strcmp() usage from the C Library. It is a bad habbit to use
    C stuff including C style casts in C++ anyway.
3. removed string.h from bin2c.hpp because strcmp was not in <string>
    making me have to include that anyway. Now that strcmp is not used don't
    need that header anymore.
4. Removed the last snprintf(). Now I don't need to make unneccessary buffers
    line a C programmer would. Why would people need buffers for C++ anyway?
    Buffers in C++ is bad because what if someone forgets to free or delete
    everything in it?