blob: edd932f7eeb3c9107f124bb6d0ccbb39f728f5f0 (
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 -*-
**
** testCosh.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Mar 30 11:35:55 2007 jofret
** Last update Wed Apr 18 17:04:57 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTCOSH_H_
#define _TESTCOSH_H_
#include <stdio.h>
#include <assert.h>
#include "cosh.h"
#include "constant.h"
void scoshsTest(void);
void dcoshsTest(void);
void ccoshsTest(void);
void zcoshsTest(void);
void scoshaTest(void);
void dcoshaTest(void);
void ccoshaTest(void);
void zcoshaTest(void);
int testCosh(void);
#endif /*! _TESTCOSH_H_ */
|