blob: 7c4b60e673a1af3f0734d8acdd2f23c841a1ae6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
** -*- C -*-
**
** cisemptya.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Wed Feb 14 15:33:30 2007 jofret
** Last update Fri Apr 27 08:58:40 2007 jofret
**
** Copyright INRIA 2007
*/
#include "isempty.h"
bool cisemptya(floatComplex* x, int size) {
if (cfinda(x, size) == NOT_FOUND) {
return true;
}
return false;
}
|