brechtsanders / xlsxio

XLSX I/O - C library for reading and writing .xlsx files
MIT License
417 stars 112 forks source link

define XLSXIO_VERSION_ID #76

Closed remicollet closed 4 years ago

remicollet commented 4 years ago

To simplify testting used version of the library at build time

#if XLSXIO_VERSION_ID > 229
    xlsxioread_free(val);
#else 
    free(val);
#endif