File: analyzer.h

package info (click to toggle)
shush 1.2.3-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 884 kB
  • ctags: 559
  • sloc: ansic: 5,502; sh: 153; lex: 69; makefile: 68; yacc: 54; awk: 31
file content (21 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
** Copyright (C) 2003-2008 Christophe Kalt
**
** This file is part of shush,
** see the LICENSE file for details on your rights.
**
** $Id: analyzer.h 1404 2008-03-08 23:25:46Z kalt $
*/

#if !defined(_ANALYZER_H_)
# define _ANALYZER_H_

extern time_t out_timestamp, err_timestamp;
extern size_t out_size, err_size;
extern char out_md5[], err_md5[];

int analyzer_init(char *, char *);
int analyzer_run(char *, size_t, char *, size_t);
int analyzer_output(FILE *, int, int, size_t, char *, size_t, char *, size_t);

#endif