mirror of
https://github.com/simon987/sist2.git
synced 2025-04-19 10:16:42 +00:00
17 lines
275 B
C
17 lines
275 B
C
#ifndef SIST2_PARSE_H
|
|
#define SIST2_PARSE_H
|
|
|
|
#include "../sist.h"
|
|
|
|
#define MAGIC_BUF_SIZE (4096 * 6)
|
|
|
|
int fs_read(struct vfile *f, void *buf, size_t size);
|
|
void fs_close(struct vfile *f);
|
|
void fs_reset(struct vfile *f);
|
|
|
|
void parse(void *arg);
|
|
|
|
void cleanup_parse();
|
|
|
|
#endif
|