diff options
Diffstat (limited to 'src/auxiliaryFunctions/find/find.h')
-rw-r--r-- | src/auxiliaryFunctions/find/find.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/find/find.h b/src/auxiliaryFunctions/find/find.h new file mode 100644 index 00000000..80309109 --- /dev/null +++ b/src/auxiliaryFunctions/find/find.h @@ -0,0 +1,35 @@ +/* +** -*- C -*- +** +** find.h +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Tue Feb 13 17:06:30 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __FIND_H__ +#define __FIND_H__ + +/* +** \brief Float Find function +*/ +int sfinda(float* x, int size); + +/* +** \brief Double Find function +*/ +int dfinda(double*x, int size); + +/* +** \brief Float Complex Find function +*/ +int cfinda(floatComplex* z, int size); + +/* +** \brief Double Complex Find function +*/ +int zfinda(doubleComplex* z, int size); +#endif /* !__FIND_H__ */ |