blob: 1921e331ed7569fa8c252636f3b0cbfe29ecd09f (
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 -*-
**
** testSin.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Mon Mar 26 17:21:21 2007 jofret
** Last update Fri Mar 30 12:04:46 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTSIN_H_
#define _TESTSIN_H_
#include <stdio.h>
#include <assert.h>
#include "sin.h"
#include "constant.h"
void ssinsTest(void);
void dsinsTest(void);
int testSin(void);
#endif /* !_TESTSIN_H_ */
|