diff options
author | jofret | 2007-04-27 06:47:30 +0000 |
---|---|---|
committer | jofret | 2007-04-27 06:47:30 +0000 |
commit | d4c521386b82ea3e29762a845bc4483f57bc056a (patch) | |
tree | c1b258c1346165dbd4179f5e6b322b2d07b96634 /src/auxiliaryFunctions/isempty/disEmptya.c | |
parent | 0b52f43b5ceccad148877b3def021a41c46501c3 (diff) | |
download | scilab2c-d4c521386b82ea3e29762a845bc4483f57bc056a.tar.gz scilab2c-d4c521386b82ea3e29762a845bc4483f57bc056a.tar.bz2 scilab2c-d4c521386b82ea3e29762a845bc4483f57bc056a.zip |
[RELEASE] isEmpty functions ! (with simple low case name)
Diffstat (limited to 'src/auxiliaryFunctions/isempty/disEmptya.c')
-rw-r--r-- | src/auxiliaryFunctions/isempty/disEmptya.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/auxiliaryFunctions/isempty/disEmptya.c b/src/auxiliaryFunctions/isempty/disEmptya.c deleted file mode 100644 index 5871e1ca..00000000 --- a/src/auxiliaryFunctions/isempty/disEmptya.c +++ /dev/null @@ -1,21 +0,0 @@ -/* -** -*- C -*- -** -** disEmptya.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Wed Feb 14 15:29:27 2007 jofret -** Last update Fri Feb 23 18:00:53 2007 jofret -** -** Copyright INRIA 2007 -*/ - -#include "isEmpty.h" -#include "find.h" - -bool disEmptya(double* x, int size) { - if (dfinda(x, size) == NOT_FOUND) { - return true; - } - return false; -} |