blob: 41a9373c7b35e1a5b9c0f634c45203926571a3ae (
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
40
|
/*
** -*- C -*-
**
** testCos.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Mon Mar 26 16:33:11 2007 jofret
** Last update Fri Mar 30 12:04:25 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTCOS_H_
#define _TESTCOS_H_
#include <stdio.h>
#include <assert.h>
#include "cos.h"
#include "constant.h"
void scossTest(void);
void dcossTest(void);
void ccossTest(void);
void zcossTest(void);
void scosaTest(void);
void dcosaTest(void);
void ccosaTest(void);
void zcosaTest(void);
int testCos(void);
#endif /* ! _TESTCOS_H_ */
|