blob: 1d32dc3758a599903517df489e033b30c0735dcd (
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
|
/*
** -*- C -*-
**
** testPythag.h
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Mon Apr 23 16:26:14 2007 jofret
** Last update Thu Apr 26 10:34:36 2007 jofret
**
** Copyright INRIA 2007
*/
#ifndef _TESTPYTHAG_H_
#define _TESTPYTHAG_H_
#include <stdio.h>
#include <assert.h>
#include "pythag.h"
int spythagsTest(void);
int dpythagsTest(void);
int testPythag(void);
#endif /* ! _TESTPYTHAG_H_ */
|