blob: e3ba15695fc76e6b9cefbb4a1896fe80debda86e (
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 -*-
**
** testAtan.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:13:18 2007 bruno
**
** Copyright INRIA 2007
*/
#ifndef _TESTATAN_H_
#define _TESTATAN_H_
#include <stdio.h>
#include <assert.h>
#include "atan.h"
#include "constant.h"
void satansTest(void);
void datansTest(void);
int testAtan(void);
#endif /* !_TESTATAN_H_ */
|