hoshi-lang dev
Yet another programming language
Loading...
Searching...
No Matches
random.h
Go to the documentation of this file.
1//
2// Created by XIaokang00010 on 2025/11/21.
3//
4
5#ifndef HOSHI_LANG_RANDOM_H
6#define HOSHI_LANG_RANDOM_H
7
8#include <cstddef>
9#include <cstdint>
10#include <cstdlib>
11
12extern "C" void runtime_random_legacy_set_seed(uint64_t seed);
13
14extern "C" uint64_t runtime_random_legacy_unsigned();
15
16#endif //HOSHI_LANG_RANDOM_H
void runtime_random_legacy_set_seed(uint64_t seed)
Definition random.cpp:17
uint64_t runtime_random_legacy_unsigned()
Definition random.cpp:8