mirror of
https://github.com/simon987/sist2.git
synced 2025-04-20 18:56:49 +00:00
13 lines
182 B
C
13 lines
182 B
C
#ifndef SIST2_CBR_H
|
|
#define SIST2_CBR_H
|
|
|
|
#include "src/sist.h"
|
|
|
|
void cbr_init();
|
|
|
|
int is_cbr(unsigned int mime);
|
|
|
|
void parse_cbr(void *buf, size_t buf_len, document_t *doc);
|
|
|
|
#endif
|