diff options
author | jofret | 2008-12-03 13:49:50 +0000 |
---|---|---|
committer | jofret | 2008-12-03 13:49:50 +0000 |
commit | 801b0f68a006ee6590d35b46cac2a7ce803b032a (patch) | |
tree | 1bb6274b3c59f8f198083b1b1162d35cd8a4a6e4 /src/auxiliaryFunctions | |
parent | 574f930f82afed2701b2cd65e7f48657d6b9ea1d (diff) | |
download | scilab2c-801b0f68a006ee6590d35b46cac2a7ce803b032a.tar.gz scilab2c-801b0f68a006ee6590d35b46cac2a7ce803b032a.tar.bz2 scilab2c-801b0f68a006ee6590d35b46cac2a7ce803b032a.zip |
Adding missing prototypes
Diffstat (limited to 'src/auxiliaryFunctions')
-rw-r--r-- | src/auxiliaryFunctions/includes/isempty.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/includes/isempty.h b/src/auxiliaryFunctions/includes/isempty.h index b02b1b76..047c69d9 100644 --- a/src/auxiliaryFunctions/includes/isempty.h +++ b/src/auxiliaryFunctions/includes/isempty.h @@ -23,6 +23,26 @@ /* ** \brief Float Is Empty function */ +#define sisemptys(in) false + +/* +** \brief Double Is Empty function +*/ +#define disemptys(in) false + +/* +** \brief Float Complex Is Empty function +*/ +#define cisemptys(in) false + +/* +** \brief Double Complex Is Empty function +*/ +#define zisemptys(in) false + +/* +** \brief Float Is Empty function +*/ bool sisemptya(float* x, int size); /* @@ -39,4 +59,5 @@ bool cisemptya(floatComplex* z, int size); ** \brief Double Complex Is Empty function */ bool zisemptya(doubleComplex* z, int size); + #endif /* !__IS_EMPTY_H__ */ |