diff options
author | torset | 2009-01-09 13:25:43 +0000 |
---|---|---|
committer | torset | 2009-01-09 13:25:43 +0000 |
commit | adef6792e37be888c1716de1aca6ae811244ebab (patch) | |
tree | eceeffd68a2013d2d6c4bc13f278d030ca87d488 /src/auxiliaryFunctions/includes/isempty.h | |
parent | 06f8b047f5bb344f3239fd90d634e583af1e3edc (diff) | |
download | scilab2c-adef6792e37be888c1716de1aca6ae811244ebab.tar.gz scilab2c-adef6792e37be888c1716de1aca6ae811244ebab.tar.bz2 scilab2c-adef6792e37be888c1716de1aca6ae811244ebab.zip |
Change in isempty because of the change of find
Diffstat (limited to 'src/auxiliaryFunctions/includes/isempty.h')
-rw-r--r-- | src/auxiliaryFunctions/includes/isempty.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/auxiliaryFunctions/includes/isempty.h b/src/auxiliaryFunctions/includes/isempty.h index 047c69d9..80285647 100644 --- a/src/auxiliaryFunctions/includes/isempty.h +++ b/src/auxiliaryFunctions/includes/isempty.h @@ -23,41 +23,41 @@ /* ** \brief Float Is Empty function */ -#define sisemptys(in) false +#define sisemptys(in) 0.0f /*= false*/ /* ** \brief Double Is Empty function */ -#define disemptys(in) false +#define disemptys(in) 0/*= false*/ /* ** \brief Float Complex Is Empty function */ -#define cisemptys(in) false +#define cisemptys(in) 0.0f/*= false*/ /* ** \brief Double Complex Is Empty function */ -#define zisemptys(in) false +#define zisemptys(in) 0/*= false*/ /* ** \brief Float Is Empty function */ -bool sisemptya(float* x, int size); +float sisemptya(float* x, int size); /* ** \brief Double Is Empty function */ -bool disemptya(double*x, int size); +double disemptya(double*x, int size); /* ** \brief Float Complex Is Empty function */ -bool cisemptya(floatComplex* z, int size); +float cisemptya(floatComplex* z, int size); /* ** \brief Double Complex Is Empty function */ -bool zisemptya(doubleComplex* z, int size); +double zisemptya(doubleComplex* z, int size); #endif /* !__IS_EMPTY_H__ */ |