This commit is contained in:
2025-09-03 12:18:38 +02:00
parent d523d15990
commit 990b724df5
12 changed files with 15 additions and 21 deletions

13
tp/tp1/src/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