mirror of
https://github.com/simon987/sist2.git
synced 2025-04-21 03:06:47 +00:00
19 lines
356 B
C
19 lines
356 B
C
#ifndef SCAN_TEXT_H
|
|
#define SCAN_TEXT_H
|
|
|
|
#include "../scan.h"
|
|
#include "../util.h"
|
|
|
|
typedef struct {
|
|
long content_size;
|
|
|
|
log_callback_t log;
|
|
logf_callback_t logf;
|
|
} scan_text_ctx_t;
|
|
|
|
scan_code_t parse_text(scan_text_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
scan_code_t parse_markup(scan_text_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
#endif
|