blob: 65617be3ceead7e3dd255418ad5c920c94044e84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
** -*- C -*-
**
** zisEmptya.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Wed Feb 14 15:34:28 2007 jofret
** Last update Fri Feb 23 17:59:54 2007 jofret
**
** Copyright INRIA 2007
*/
#include "isEmpty.h"
#include "find.h"
bool zisEmptya(doubleComplex* x, int size) {
if (zfinda(x, size) == NOT_FOUND) {
return true;
}
return false;
}
|