blob: 1e1cac629f968868c1925ee718592fe90a099888 (
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 -*-
**
** testTan.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Mar 30 11:22:40 2007 jofret
** Last update Fri Mar 30 12:05:07 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTTAN_H_
#define _TESTTAN_H_
#include <stdio.h>
#include <assert.h>
#include "tan.h"
#include "constant.h"
void stansTest(void);
void dtansTest(void);
int testTan(void);
#endif /* !_TESTTAN_H_ */
|