mirror of
https://github.com/sist2app/sist2.git
synced 2026-01-21 10:21:52 +00:00
16 lines
238 B
C
16 lines
238 B
C
#ifndef SIST2_PARSE_H
|
|
#define SIST2_PARSE_H
|
|
|
|
#include "src/sist.h"
|
|
|
|
#define PARSE_BUF_SIZE 4096
|
|
|
|
int fs_read(struct vfile *f, void *buf, size_t size);
|
|
void fs_close(struct vfile *f);
|
|
|
|
void parse(void *arg);
|
|
|
|
void cleanup_parse();
|
|
|
|
#endif
|