diff options
author | jofret | 2007-02-13 16:14:33 +0000 |
---|---|---|
committer | jofret | 2007-02-13 16:14:33 +0000 |
commit | 85c7a2e39d24c29a079a47e5c75e88c468756e5d (patch) | |
tree | 9c117457508ef57ffbca9d1a02aab2c2af65976d /src/auxiliaryFunctions/find/notFound.h | |
parent | cd57b12f621082f87255daf100a66eb01e5ae1d7 (diff) | |
download | scilab2c-85c7a2e39d24c29a079a47e5c75e88c468756e5d.tar.gz scilab2c-85c7a2e39d24c29a079a47e5c75e88c468756e5d.tar.bz2 scilab2c-85c7a2e39d24c29a079a47e5c75e88c468756e5d.zip |
* src/elementaryFunctions/tanh/ztanhs.c :
Fixed with C99 Complex but Scilab computation.
* src/elementaryFunctions/tanh/ctanhs.c :
Fixed with C99 Complex but Scilab computation.
* src/auxiliaryFunctions/find :
Find not null element in list.
* src/auxiliaryFunctions/find/{sdcz}finda.c :
Implementation : s(float) d(double)
c(floatComplex) z(doubleComplex)
* src/auxiliaryFunctions/find/find.h :
Interface.
* src/auxiliaryFunctions/find/notFound.h :
Constant if all elements are not null.
Adding some other functions.
Diffstat (limited to 'src/auxiliaryFunctions/find/notFound.h')
-rw-r--r-- | src/auxiliaryFunctions/find/notFound.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/find/notFound.h b/src/auxiliaryFunctions/find/notFound.h new file mode 100644 index 00000000..59d8c2fe --- /dev/null +++ b/src/auxiliaryFunctions/find/notFound.h @@ -0,0 +1,18 @@ +/* +** -*- C -*- +** +** notFound.h +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Tue Feb 13 17:16:47 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __NOT_FOUND_H__ +#define __NOT_FOUND_H__ + +#define NOT_FOUND -1 + +#endif /* !__NOT_FOUND_H__ */ |