mirror of
https://github.com/simon987/sist2.git
synced 2025-04-24 12:45:56 +00:00
18 lines
242 B
C
18 lines
242 B
C
#ifndef SCAN_CBR_H
|
|
#define SCAN_CBR_H
|
|
|
|
#include <stdlib.h>
|
|
#include "../scan.h"
|
|
|
|
typedef struct {
|
|
|
|
} scan_cbr_ctx_t;
|
|
|
|
void cbr_init();
|
|
|
|
int is_cbr(unsigned int mime);
|
|
|
|
void parse_cbr(scan_cbr_ctx_t *ctx, vfile_t *f, document_t *doc);
|
|
|
|
#endif
|