blob: 19a9667f0783674c2e1e7127bca31ba07cf1a893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
** -*- C -*-
**
** cfinda.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Tue Feb 13 16:46:42 2007 jofret
** Last update Wed Feb 14 17:09:19 2007 jofret
**
** Copyright INRIA 2007
*/
#include "floatComplex.h"
#include "notFound.h"
int cfinda(floatComplex* z, int size) {
/* FIXME : Dummy !! */
return NOT_FOUND;
}
|