blob: e34964c4c58e4382c41845c56dec9690c1e206b5 (
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
|
/*
** -*- C -*-
**
** testCosh.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Mar 30 11:35:55 2007 jofret
** Last update Fri Mar 30 12:07:33 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);
int testCosh(void);
#endif /*! _TESTCOSH_H_ */
|