From 801b0f68a006ee6590d35b46cac2a7ce803b032a Mon Sep 17 00:00:00 2001 From: jofret Date: Wed, 3 Dec 2008 13:49:50 +0000 Subject: Adding missing prototypes --- src/auxiliaryFunctions/includes/isempty.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 @@ -20,6 +20,26 @@ #include "notFound.h" #include "find.h" +/* +** \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 */ @@ -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__ */ -- cgit