mirror of
https://github.com/simon987/sist2.git
synced 2025-04-20 18:56:49 +00:00
* extract scan code to libscan, (wip) * submodules * replace curl with mongoose (wip) * replace onion with mongoose (wip) * replace onion with mongoose (wip) * It compiles! (I think) * Update readme * Entirely remove libonion (WIP) * unscramble submodules * recover screenshot * Update mappings * Bug fixes * update * media meta fix * memory fixes * More bug fixes... * Bug fix w/ libmagic & vfile * libmagic fix (again) * Better lightbox, better video handler, random reloads fix * Use svg for info icon * re-enable http auth * mobi support #41, fix logs * Update README & cleanup
17 lines
269 B
C
17 lines
269 B
C
#ifndef SIST2_PARSE_H
|
|
#define SIST2_PARSE_H
|
|
|
|
#include "../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 fs_reset(struct vfile *f);
|
|
|
|
void parse(void *arg);
|
|
|
|
void cleanup_parse();
|
|
|
|
#endif
|