blob: 356aaa0bf7c7f1db5f5e99f651a6a54b749d846b (
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
28
29
30
31
32
|
/*
** -*- C -*-
**
** testRand.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Wed Feb 14 16:07:57 2007 jofret
** Last update Thu Nov 8 16:03:15 2007 bruno
**
** Copyright INRIA 2007
*/
#ifndef __TESTRAND_H__
#define __TESTRAND_H__
#include <stdio.h>
#include <assert.h>
#include "rand.h"
#define ERROR 51
int srandsTest(void);
int drandsTest(void);
int crandsTest(void);
int zrandsTest(void);
int testRand(void);
#endif /* ! __TESTRAND_H__ */
|