c_piscine__offshore_mains/common/tests.h

16 lines
415 B
C
Raw Normal View History

2023-11-23 19:06:22 +00:00
#ifndef TESTS_H
#define TESTS_H
#include <string.h>
#include <stdio.h>
#define TEST_SOURCE "HeLlo world!\0It's a\tBEAUTIFUL\tday!"
#define TEST_SOURCE_LENGHT 35
#define TEST_DESTINATION "GooDBye\0and thanks \tfor\rall the fish!"
#define TEST_DESTINATION_LENGHT 38
#define FG_WHT "\x1B[37m"
#define FG_MAG "\x1B[35m"
#define COLOR_RESET "\x1B[0m"
#endif
2023-11-28 15:40:55 +00:00
int bufcmp(char*, char*, int);
void dump(char*, int);