diff options
Diffstat (limited to 'src/auxiliaryFunctions/rand/testRand.h')
-rw-r--r-- | src/auxiliaryFunctions/rand/testRand.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/rand/testRand.h b/src/auxiliaryFunctions/rand/testRand.h new file mode 100644 index 00000000..356aaa0b --- /dev/null +++ b/src/auxiliaryFunctions/rand/testRand.h @@ -0,0 +1,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__ */ |