diff options
author | jofret | 2007-04-27 06:47:30 +0000 |
---|---|---|
committer | jofret | 2007-04-27 06:47:30 +0000 |
commit | d4c521386b82ea3e29762a845bc4483f57bc056a (patch) | |
tree | c1b258c1346165dbd4179f5e6b322b2d07b96634 /src/auxiliaryFunctions/includes/isempty.h | |
parent | 0b52f43b5ceccad148877b3def021a41c46501c3 (diff) | |
download | scilab2c-d4c521386b82ea3e29762a845bc4483f57bc056a.tar.gz scilab2c-d4c521386b82ea3e29762a845bc4483f57bc056a.tar.bz2 scilab2c-d4c521386b82ea3e29762a845bc4483f57bc056a.zip |
[RELEASE] isEmpty functions ! (with simple low case name)
Diffstat (limited to 'src/auxiliaryFunctions/includes/isempty.h')
-rw-r--r-- | src/auxiliaryFunctions/includes/isempty.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/includes/isempty.h b/src/auxiliaryFunctions/includes/isempty.h new file mode 100644 index 00000000..51ebce4b --- /dev/null +++ b/src/auxiliaryFunctions/includes/isempty.h @@ -0,0 +1,42 @@ +/* +** -*- C -*- +** +** isEmpty.h +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Fri Apr 27 08:57:49 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __IS_EMPTY_H__ +#define __IS_EMPTY_H__ + +#include <stdbool.h> + +#include "floatComplex.h" +#include "doubleComplex.h" +#include "notFound.h" +#include "find.h" + +/* +** \brief Float Is Empty function +*/ +bool sisemptya(float* x, int size); + +/* +** \brief Double Is Empty function +*/ +bool disemptya(double*x, int size); + +/* +** \brief Float Complex Is Empty function +*/ +bool cisemptya(floatComplex* z, int size); + +/* +** \brief Double Complex Is Empty function +*/ +bool zisemptya(doubleComplex* z, int size); +#endif /* !__IS_EMPTY_H__ */ |