mirror of
https://github.com/brechtsanders/xlsxio
synced 2025-03-28 21:13:24 +00:00
This commit is contained in:
parent
b3dfd27c38
commit
af485ebf4b
@ -1,5 +1,15 @@
|
||||
0.2.31
|
||||
|
||||
2022-02-16 Brecht Sanders https://github.com/brechtsanders/
|
||||
|
||||
* changed free() to xlsxioread_free() in example_xlsxio_read.c (issue #73)
|
||||
|
||||
0.2.30
|
||||
|
||||
2021-09-01 Brecht Sanders https://github.com/brechtsanders/
|
||||
|
||||
* added .pc and .cmake file generation and installation to CMakeLists.txt
|
||||
|
||||
2021-03-12 Brecht Sanders https://github.com/brechtsanders/
|
||||
|
||||
* remove <AppVersion> tag from xlsxio_write.c and put version information in <Application> (issue #91)
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
1585051485 \\server\users\brecht\sources\cpp\xlsxio\include\xlsxio_version.h
|
||||
|
||||
1584724326 source:z:\xlsxio\lib\xlsxio_write.c
|
||||
1615567896 source:z:\xlsxio\lib\xlsxio_write.c
|
||||
"xlsxio_write.h"
|
||||
"xlsxio_version.h"
|
||||
<stdlib.h>
|
||||
|
@ -142,7 +142,7 @@ int main (int argc, char* argv[])
|
||||
while (xlsxioread_sheet_next_row(sheet)) {
|
||||
while ((value = xlsxioread_sheet_next_cell(sheet)) != NULL) {
|
||||
XML_Char_printf(X("%s\t"), value);
|
||||
free(value);
|
||||
xlsxioread_free(value);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ THE SOFTWARE.
|
||||
/*! \brief minor version number */
|
||||
#define XLSXIO_VERSION_MINOR 2
|
||||
/*! \brief micro version number */
|
||||
#define XLSXIO_VERSION_MICRO 30
|
||||
#define XLSXIO_VERSION_MICRO 31
|
||||
/*! @} */
|
||||
|
||||
/*! \cond PRIVATE */
|
||||
|
Loading…
x
Reference in New Issue
Block a user