/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #include "randinit.h" ///Set the random seed /** @return seed of the random function */ unsigned int initRandom(){ time_t t = time(NULL); srand(t); return t; }