mirror of
https://github.com/simon987/sist2.git
synced 2025-12-13 07:19:06 +00:00
13 lines
242 B
C
13 lines
242 B
C
#ifndef SIST2_ARC_H
|
|
#define SIST2_ARC_H
|
|
|
|
#include "src/sist.h"
|
|
|
|
int should_parse_filtered_file(const char *filepath, int ext);
|
|
|
|
void parse_archive(vfile_t *f, document_t *doc);
|
|
|
|
int arc_read(struct vfile * f, void *buf, size_t size);
|
|
|
|
#endif
|