#ifndef _INCLUDE_RANDOM_H #define _INCLUDE_RANDOM_H #ifndef TRUE #define TRUE -1 #endif #ifndef FALSE #define FALSE 0 #endif #include #include #include int FillArrayWithRand(int * Array,unsigned int ArraySize,int MinZahl=0,int MaxZahl=0); int random(int MinZahl = 0,int MaxZahl = INT_MAX-1); #include "random.cpp" #endif