diff options
Diffstat (limited to 'src/auxiliaryFunctions/isempty/cisemptya.c')
-rw-r--r-- | src/auxiliaryFunctions/isempty/cisemptya.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auxiliaryFunctions/isempty/cisemptya.c b/src/auxiliaryFunctions/isempty/cisemptya.c index 483c9a4b..1a19e8af 100644 --- a/src/auxiliaryFunctions/isempty/cisemptya.c +++ b/src/auxiliaryFunctions/isempty/cisemptya.c @@ -12,9 +12,9 @@ #include "isempty.h" -bool cisemptya(floatComplex* x, int size) { +float cisemptya(floatComplex* x, int size) { if (cfinda(x, size) == NULL) { - return true; + return 1; } - return false; + return 0; } |