diff options
author | jofret | 2007-04-26 06:41:39 +0000 |
---|---|---|
committer | jofret | 2007-04-26 06:41:39 +0000 |
commit | 6cb0d4469b3306ac7b2543e9332deed0fe642eb8 (patch) | |
tree | a50611de16ec1ac59ef0b335564d5cf88fd8f417 /src/auxiliaryFunctions/find/testFind.h | |
parent | ac241b21aa0191d4e80b9aedad1013d655ef9965 (diff) | |
download | scilab2c-6cb0d4469b3306ac7b2543e9332deed0fe642eb8.tar.gz scilab2c-6cb0d4469b3306ac7b2543e9332deed0fe642eb8.tar.bz2 scilab2c-6cb0d4469b3306ac7b2543e9332deed0fe642eb8.zip |
[RELEASE] find function done.
Diffstat (limited to 'src/auxiliaryFunctions/find/testFind.h')
-rw-r--r-- | src/auxiliaryFunctions/find/testFind.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/find/testFind.h b/src/auxiliaryFunctions/find/testFind.h new file mode 100644 index 00000000..56d7d67a --- /dev/null +++ b/src/auxiliaryFunctions/find/testFind.h @@ -0,0 +1,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_ */ |