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

13
SCR3.1/TP1/Ex2/helpers.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef _HELPERS_H
#define _HELPERS_H
#include <stdlib.h>
#define KB * 1024
#define MB * 1024 * 1024
void randomize(char *buf, size_t n);
void clean(size_t n);
void dirty(size_t n);
int interlude(void);
#endif