mirror of
https://github.com/simon987/sist2.git
synced 2025-04-24 12:45:56 +00:00
14 lines
232 B
C
14 lines
232 B
C
#ifndef SCAN_TEXT_H
|
|
#define SCAN_TEXT_H
|
|
|
|
#include "../scan.h"
|
|
#include "../util.h"
|
|
|
|
typedef struct {
|
|
long content_size;
|
|
} scan_text_ctx_t;
|
|
|
|
scan_code_t parse_text(scan_text_ctx_t *ctx, struct vfile *f, document_t *doc);
|
|
|
|
#endif
|