stellar

Stellar - Chess engine written in C
Log | Files | Refs

random.h (150B)


      1 #ifndef STELLAR_RANDOM_H
      2 #define STELLAR_RANDOM_H
      3 
      4 #include "utils.h"
      5 
      6 void random_state_reset();
      7 U32 random_get_U32();
      8 U64 random_get_U64();
      9 
     10 #endif