diff options
Diffstat (limited to 'src/auxiliaryFunctions/isempty')
-rw-r--r-- | src/auxiliaryFunctions/isempty/Makefile | 6 | ||||
-rw-r--r-- | src/auxiliaryFunctions/isempty/cisEmptya.c | 9 | ||||
-rw-r--r-- | src/auxiliaryFunctions/isempty/disEmptya.c | 8 | ||||
-rw-r--r-- | src/auxiliaryFunctions/isempty/sisEmptya.c | 8 | ||||
-rw-r--r-- | src/auxiliaryFunctions/isempty/zisEmptya.c | 9 |
5 files changed, 15 insertions, 25 deletions
diff --git a/src/auxiliaryFunctions/isempty/Makefile b/src/auxiliaryFunctions/isempty/Makefile index 85aff443..6786b33e 100644 --- a/src/auxiliaryFunctions/isempty/Makefile +++ b/src/auxiliaryFunctions/isempty/Makefile @@ -5,7 +5,7 @@ ## Made by Bruno JOFRET <bruno.jofret@inria.fr> ## ## Started on Thu Nov 30 16:33:40 2006 jofret -## Last update Wed Feb 14 14:38:13 2007 jofret +## Last update Fri Feb 23 17:59:01 2007 jofret ## ## Copyright INRIA 2006 ## @@ -14,7 +14,7 @@ NAME = ../../lib/libIsEmpty.a RM = rm -f CC = gcc -INCLUDE = -I ../../type -I ../../misc +INCLUDE = -I ../../type -I ../../includes -I ../includes LINK = -L ../../lib CFLAGS = -Werror -Wall -pedantic -ansi $(INCLUDE) $(LINK) $(STANDARD) AR = ar cru @@ -25,7 +25,7 @@ SRC = sisEmptya.c \ cisEmptya.c \ zisEmptya.c -HEAD = isEmpty.h +HEAD = ../includes/isEmpty.h OBJ = $(SRC:.c=.o) all: $(NAME) diff --git a/src/auxiliaryFunctions/isempty/cisEmptya.c b/src/auxiliaryFunctions/isempty/cisEmptya.c index bbaa71ea..3d40e10f 100644 --- a/src/auxiliaryFunctions/isempty/cisEmptya.c +++ b/src/auxiliaryFunctions/isempty/cisEmptya.c @@ -5,16 +5,13 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Wed Feb 14 15:33:30 2007 jofret -** Last update Wed Feb 14 15:35:29 2007 jofret +** Last update Fri Feb 23 18:01:22 2007 jofret ** ** Copyright INRIA 2007 */ -#include <stdbool.h> -#include "notFound.h" -#include "floatComplex.h" - -int cfinda(floatComplex*, int); +#include "isEmpty.h" +#include "find.h" bool cisEmptya(floatComplex* x, int size) { if (cfinda(x, size) == NOT_FOUND) { diff --git a/src/auxiliaryFunctions/isempty/disEmptya.c b/src/auxiliaryFunctions/isempty/disEmptya.c index 985d057e..5871e1ca 100644 --- a/src/auxiliaryFunctions/isempty/disEmptya.c +++ b/src/auxiliaryFunctions/isempty/disEmptya.c @@ -5,15 +5,13 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Wed Feb 14 15:29:27 2007 jofret -** Last update Thu Feb 15 16:35:20 2007 jofret +** Last update Fri Feb 23 18:00:53 2007 jofret ** ** Copyright INRIA 2007 */ -#include <stdbool.h> -#include "notFound.h" - -int dfinda(double*, int); +#include "isEmpty.h" +#include "find.h" bool disEmptya(double* x, int size) { if (dfinda(x, size) == NOT_FOUND) { diff --git a/src/auxiliaryFunctions/isempty/sisEmptya.c b/src/auxiliaryFunctions/isempty/sisEmptya.c index c98fce46..e69a2fac 100644 --- a/src/auxiliaryFunctions/isempty/sisEmptya.c +++ b/src/auxiliaryFunctions/isempty/sisEmptya.c @@ -5,15 +5,13 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Wed Feb 14 14:59:33 2007 jofret -** Last update Thu Feb 15 16:53:35 2007 jofret +** Last update Fri Feb 23 18:00:31 2007 jofret ** ** Copyright INRIA 2007 */ -#include <stdbool.h> -#include "notFound.h" - -extern int sfinda(float*, int); +#include "isEmpty.h" +#include "find.h" bool sisEmptya(float* x, int size) { if (sfinda(x, size) == NOT_FOUND) { diff --git a/src/auxiliaryFunctions/isempty/zisEmptya.c b/src/auxiliaryFunctions/isempty/zisEmptya.c index 02e0ce53..65617be3 100644 --- a/src/auxiliaryFunctions/isempty/zisEmptya.c +++ b/src/auxiliaryFunctions/isempty/zisEmptya.c @@ -5,16 +5,13 @@ ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Wed Feb 14 15:34:28 2007 jofret -** Last update Wed Feb 14 15:40:02 2007 jofret +** Last update Fri Feb 23 17:59:54 2007 jofret ** ** Copyright INRIA 2007 */ -#include <stdbool.h> -#include "notFound.h" -#include "doubleComplex.h" - -int zfinda(doubleComplex*, int); +#include "isEmpty.h" +#include "find.h" bool zisEmptya(doubleComplex* x, int size) { if (zfinda(x, size) == NOT_FOUND) { |