/*
**  -*- 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_ */