This commit is contained in:
Brecht Sanders 2018-03-19 12:02:05 +01:00
parent 443c093fce
commit 14f86bb7af

View File

@ -100,6 +100,9 @@ Example C programs
------------------
### Listing worksheets in an .xlsx file
```c
#include "xlsxio_read.h"
```
```c
//open .xlsx file for reading
xlsxioreader xlsxioread;
if ((xlsxioread = xlsxioread_open(filename)) == NULL) {
@ -123,6 +126,9 @@ xlsxioread_close(xlsxioread);
```
### Reading from an .xlsx file
```c
#include "xlsxio_read.h"
```
```c
//open .xlsx file for reading
xlsxioreader xlsxioread;
if ((xlsxioread = xlsxioread_open(filename)) == NULL) {