This commit is contained in:
2025-09-04 11:23:03 +02:00
parent 00268af4fb
commit d57594fc06
24 changed files with 1045 additions and 0 deletions

9
SCR3.1/TP1/Ex2/buf.c Normal file
View File

@@ -0,0 +1,9 @@
#include "helpers.h"
static char buffer[16 MB] = {0};
int main(int argc, char **argv)
{
randomize(buffer, 16 MB);
return interlude();
}