Add: conway game (basic) but flickers?

This commit is contained in:
xamidev
2024-08-10 22:58:56 +02:00
parent c47e29f9ed
commit 51024e1d06
10 changed files with 179 additions and 3 deletions

View File

@@ -3,7 +3,12 @@
#define RAND_MAX 1024
#include "../libc/stdint.h"
int lcg(int seed);
int randint(int seed);
uint32_t rand();
float rand_float();
void srand(uint32_t seed);
#endif