blob: 5761d2932260646a47e48c5b0c0f1bf7a325ca64 (
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 -*-
**
** testSqrt.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Fri Mar 30 12:01:28 2007 jofret
** Last update Fri Apr 20 10:52:56 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTSQRT_H_
#define _TESTSQRT_H_
#include <stdio.h>
#include <assert.h>
#include "sqrt.h"
#include "constant.h"
void ssqrtsTest(void);
void dsqrtsTest(void);
int testSqrt(void);
#endif /* !_TESTSQRT_H_ */
|