blob: 8f098956b7a6ea0873dfebfb5150e7f5ee8b2791 (
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
|
/*
** -*- C -*-
**
** floatComplex.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Thu Nov 30 16:50:08 2006 jofret
** Last update Fri Feb 23 16:19:10 2007 jofret
**
** Copyright INRIA 2006
*/
#ifndef __FLOATCOMPLEX_H__
#define __FLOATCOMPLEX_H__
/*
** Hand made Float Complex definition
** {
*/
#include <stdbool.h>
struct float_complex
{
float real;
float imag;
};
typedef struct float_complex floatComplex;
float creals(floatComplex);
float cimags(floatComplex);
floatComplex FloatComplex(float, float);
bool cisreals(floatComplex);
bool cisimags(floatComplex);
/*
** }
*/
#endif /* !__FLOATCOMPLEX_H__ */
|