BUT2/SCR/SCR2/TP01/ex1bis/buf.c
2023-10-23 13:23:36 +02:00

11 lines
167 B
C

#include "helpers.h"
static char buf1[8 MB] = {0};
static char buf2[16 MB] = {0};
int main(int argc, char **argv)
{
randomize(buf2, 16 MB);
return interlude();
}