brechtsanders / xlsxio

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

Make one single library #85

Open lilastic opened 3 years ago

lilastic commented 3 years ago

Currently, one has to import header file 'xlsxio_write.h' and link with shared library 'libwrite' to write XLSX files and import header 'xlsxio_read.h' and link with shared library 'libread to read XLSX files.

While this segmentation has its merit (logic-wise), in practice, it's better to have everything under just one header file and one shared library. This alleviates the developer and user of the xlsxio library.