File: checks.h

package info (click to toggle)
clamav 0.99%2Bdfsg-0%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 63,444 kB
  • ctags: 51,567
  • sloc: cpp: 267,214; ansic: 163,108; sh: 35,371; python: 2,630; makefile: 2,249; perl: 1,690; yacc: 1,352; pascal: 1,218; lex: 714; lisp: 184; csh: 117; xml: 38; asm: 32; exp: 4
file content (22 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef CHECKS_H
#define CHECKS_H

#include "checks_common.h"
Suite *test_jsnorm_suite(void);
Suite *test_str_suite(void);
Suite *test_regex_suite(void);
Suite *test_disasm_suite(void);
Suite *test_uniq_suite(void);
Suite *test_matchers_suite(void);
Suite *test_htmlnorm_suite(void);
Suite *test_bytecode_suite(void);
void errmsg_expected(void);
int open_testfile(const char *name);
void diff_files(int fd, int reffd);
void diff_file_mem(int fd, const char *ref, size_t len);

extern struct cli_dconf *dconf;
void dconf_setup(void);
void dconf_teardown(void);

#endif