start reading the next row of data; must be called before get_next_cell. returns false if there is no next row to get.
| 67 | // start reading the next row of data; must be called before get_next_cell. |
| 68 | // returns false if there is no next row to get. |
| 69 | static bool get_next_row(xlsx_sheet_handle *sheet_handle) { |
| 70 | return xlsxioread_sheet_next_row(sheet_handle->handle) != 0; |
| 71 | } |
| 72 | |
| 73 | // fills the value param with the contents of the cell in the next column cell |
| 74 | // in the current row. |