blob: 56d7d67af859fe9001fdfd2bb1882b8569b0c96f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
** -*- C -*-
**
** testFind.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Mon Apr 23 16:26:14 2007 jofret
** Last update Tue Apr 24 16:04:28 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTFIND_H_
#define _TESTFIND_H_
#include <stdio.h>
#include <assert.h>
#include "find.h"
#include "notFound.h"
#define ERROR 42
int sfindsTest(void);
int dfindsTest(void);
int cfindsTest(void);
int zfindsTest(void);
int sfindaTest(void);
int dfindaTest(void);
int cfindaTest(void);
int zfindaTest(void);
int testFind(void);
#endif /* ! _TESTFIND_H_ */
|