Add: program: words version 1

This commit is contained in:
xamidev
2024-07-24 15:08:39 +02:00
parent b352d3f4e2
commit 631099a53d
10 changed files with 104 additions and 10 deletions

9
src/libc/crypto.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef CRYPTO_H
#define CRYPTO_H
#define RAND_MAX 1024
int lcg(int seed);
int randint(int seed);
#endif