blob: 0a09d2b19fb988f1593c113ae1865c9f83bdb9d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef TESTSUITE_BINARY_H
#define TESTSUITE_BINARY_H
#include "sieve-common.h"
void testsuite_binary_init(void);
void testsuite_binary_deinit(void);
void testsuite_binary_reset(void);
/*
* Binary Access
*/
bool testsuite_binary_save(struct sieve_binary *sbin, const char *name);
struct sieve_binary *testsuite_binary_load(const char *name);
#endif
|