Commit | Line | Data |
---|---|---|
1 | #ifndef PPAM_SERIALIZE_H | |
2 | #define PPAM_SERIALIZE_H | |
3 | ||
4 | #include <stdlib.h> | |
5 | #include <stdio.h> | |
6 | #include <stdint.h> | |
7 | ||
8 | //main job: parse a text file into a binary compressed version | |
9 | void serialize_byCols(const char* ifileName, const char* ofileName, uint32_t nbItems); | |
10 | ||
11 | //serialize from usual 'by-row' data | |
12 | void serialize_byRows(const char* ifileName, const char* ofileName, uint32_t nbItems); | |
13 | ||
14 | #endif |