diff options
author | jofret | 2007-09-11 16:02:09 +0000 |
---|---|---|
committer | jofret | 2007-09-11 16:02:09 +0000 |
commit | a6e5fe5da63ed2dd8db74504075abacd2d557754 (patch) | |
tree | 6b42401bfecf6fb89a170862b184de119eebc1ee /src/elementaryFunctions/exp10/testExp10.h | |
parent | 110650613fca7f68c4e683c7fb1b4cc0eb9279ee (diff) | |
download | scilab2c-a6e5fe5da63ed2dd8db74504075abacd2d557754.tar.gz scilab2c-a6e5fe5da63ed2dd8db74504075abacd2d557754.tar.bz2 scilab2c-a6e5fe5da63ed2dd8db74504075abacd2d557754.zip |
End of prototyping all elementary functions.
Just need some code (wait for an internship).
Diffstat (limited to 'src/elementaryFunctions/exp10/testExp10.h')
-rw-r--r-- | src/elementaryFunctions/exp10/testExp10.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/elementaryFunctions/exp10/testExp10.h b/src/elementaryFunctions/exp10/testExp10.h new file mode 100644 index 00000000..9dbb749a --- /dev/null +++ b/src/elementaryFunctions/exp10/testExp10.h @@ -0,0 +1,40 @@ +/* +** -*- C -*- +** +** testExp10.h +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Wed Apr 18 17:07:03 2007 jofret +** Last update Thu Sep 6 16:56:09 2007 bruno +** +** Copyright INRIA 2007 +*/ + +#ifndef _TESTEXP10_H_ +#define _TESTEXP10_H_ + +#include <stdio.h> +#include <assert.h> +#include "exp10.h" +#include "constant.h" + + +void sexp10sTest(void); + +void dexp10sTest(void); + +void cexp10sTest(void); + +void zexp10sTest(void); + +void sexp10aTest(void); + +void dexp10aTest(void); + +void cexp10aTest(void); + +void zexp10aTest(void); + +int testExp10(void); + +#endif /* ! _TESTEXP10_H_ */ |