blob: 47a3956f787640922facbb551ee615dc0b0945e5 (
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 -*-
**
** testAtanh.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Mar 30 11:22:40 2007 jofret
** Last update Thu Sep 6 17:15:05 2007 bruno
**
** Copyright INRIA 2007
*/
#ifndef _TESTATANH_H_
#define _TESTATANH_H_
#include <stdio.h>
#include <assert.h>
#include "atanh.h"
#include "constant.h"
void satanhsTest(void);
void datanhsTest(void);
int testAtanh(void);
#endif /* !_TESTATANH_H_ */
|