File: random.h

package info (click to toggle)
dact 0.8.42-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,444 kB
  • sloc: ansic: 5,923; sh: 2,748; makefile: 116
file content (11 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _DACT_RANDOM_H
#define _DACT_RANDOM_H

typedef int rnd_id;

rnd_id rnd_init(void);
int64_t rnd_getrandom(const rnd_id id, const int64_t low, const int64_t high);
void rnd_deinit(const rnd_id id);


#endif