summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/auxiliaryFunctions/includes/isEmpty.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/auxiliaryFunctions/includes/isEmpty.h b/src/auxiliaryFunctions/includes/isEmpty.h
index 5c434779..51ebce4b 100644
--- a/src/auxiliaryFunctions/includes/isEmpty.h
+++ b/src/auxiliaryFunctions/includes/isEmpty.h
@@ -1,11 +1,11 @@
/*
** -*- C -*-
**
-** find.h
+** isEmpty.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Feb 8 10:12:17 2007 jofret
-** Last update Fri Feb 23 18:01:52 2007 jofret
+** Last update Fri Apr 27 08:57:49 2007 jofret
**
** Copyright INRIA 2007
*/
@@ -18,24 +18,25 @@
#include "floatComplex.h"
#include "doubleComplex.h"
#include "notFound.h"
+#include "find.h"
/*
** \brief Float Is Empty function
*/
-bool sisEmptya(float* x, int size);
+bool sisemptya(float* x, int size);
/*
** \brief Double Is Empty function
*/
-bool disEmptya(double*x, int size);
+bool disemptya(double*x, int size);
/*
** \brief Float Complex Is Empty function
*/
-bool cisEmptya(floatComplex* z, int size);
+bool cisemptya(floatComplex* z, int size);
/*
** \brief Double Complex Is Empty function
*/
-bool zisEmptya(doubleComplex* z, int size);
+bool zisemptya(doubleComplex* z, int size);
#endif /* !__IS_EMPTY_H__ */