doc -> ooxml

This commit is contained in:
simon987 2020-04-03 09:00:35 -04:00
parent 6106b87cba
commit a027bcb9eb
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ static int read_part(scan_ooxml_ctx_t *ctx, struct archive *a, text_buffer_t *bu
return 0;
}
void parse_doc(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc) {
void parse_ooxml(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc) {
size_t buf_len;
void * buf = read_all(f, &buf_len);

View File

@ -11,6 +11,6 @@ typedef struct {
store_callback_t store;
} scan_ooxml_ctx_t;
void parse_doc(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc);
void parse_ooxml(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc);
#endif