| 68 | } |
| 69 | |
| 70 | void hb_close_csv_file( hb_csv_file_t *file ) |
| 71 | { |
| 72 | if( file == NULL ) |
| 73 | { |
| 74 | return; |
| 75 | } |
| 76 | |
| 77 | fclose( file->fileref ); |
| 78 | free( file ); |
| 79 | } |
| 80 | |
| 81 | /* Parse CSV Cells */ |
| 82 | hb_csv_cell_t *hb_read_next_cell( hb_csv_file_t *file ) |
no outgoing calls