summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/includes/isEmpty.h
diff options
context:
space:
mode:
authorjofret2007-02-23 16:42:06 +0000
committerjofret2007-02-23 16:42:06 +0000
commitb878c676d18db38ad233f200f4c9a0443644611a (patch)
tree7394a954d91a9ec61b26c29cacea3336432f057f /src/auxiliaryFunctions/includes/isEmpty.h
parentb5c3d5a73a4d071616215efde489d050d6f64b47 (diff)
downloadscilab2c-b878c676d18db38ad233f200f4c9a0443644611a.tar.gz
scilab2c-b878c676d18db38ad233f200f4c9a0443644611a.tar.bz2
scilab2c-b878c676d18db38ad233f200f4c9a0443644611a.zip
* src/auxiliaryFunctions/includes :
Add includes directory for profiling functions. * src/auxiliaryFunctions/*/*.h : Moving headers to includes.
Diffstat (limited to 'src/auxiliaryFunctions/includes/isEmpty.h')
-rw-r--r--src/auxiliaryFunctions/includes/isEmpty.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/includes/isEmpty.h b/src/auxiliaryFunctions/includes/isEmpty.h
new file mode 100644
index 00000000..40a9ad3e
--- /dev/null
+++ b/src/auxiliaryFunctions/includes/isEmpty.h
@@ -0,0 +1,37 @@
+/*
+** -*- C -*-
+**
+** find.h
+** Made by Bruno JOFRET <bruno.jofret@inria.fr>
+**
+** Started on Thu Feb 8 10:12:17 2007 jofret
+** Last update Wed Feb 14 14:43:53 2007 jofret
+**
+** Copyright INRIA 2007
+*/
+
+#ifndef __IS_EMPTY_H__
+#define __IS_EMPTY_H__
+
+#include <bool.h>
+
+/*
+** \brief Float Is Empty function
+*/
+bool sisEmptya(float* x, int size);
+
+/*
+** \brief Double Is Empty function
+*/
+bool disEmptya(double*x, int size);
+
+/*
+** \brief Float Complex Is Empty function
+*/
+bool cisEmptya(floatComplex* z, int size);
+
+/*
+** \brief Double Complex Is Empty function
+*/
+bool zisEmptya(doubleComplex* z, int size);
+#endif /* !__IS_EMPTY_H__ */