summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/includes/isempty.h
blob: 51ebce4b5143140a13380fc99c160aa4f5b3ff01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
**  -*- C -*-
**
** isEmpty.h
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Feb  8 10:12:17 2007 jofret
** Last update Fri Apr 27 08:57:49 2007 jofret
**
** Copyright INRIA 2007
*/

#ifndef __IS_EMPTY_H__
#define __IS_EMPTY_H__

#include <stdbool.h>

#include "floatComplex.h"
#include "doubleComplex.h"
#include "notFound.h"
#include "find.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__ */