From 99bf4bb2d572b5e59a29dfd398e1f0103769f15b Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 8 Dec 2025 15:11:57 +0100 Subject: [PATCH] feat(includes): adding the libasm header --- includes/libasm.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 includes/libasm.h diff --git a/includes/libasm.h b/includes/libasm.h new file mode 100644 index 0000000..16b1887 --- /dev/null +++ b/includes/libasm.h @@ -0,0 +1,23 @@ +#pragma once + +#include + +#define LOREM "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +# define RESET "\x1b[0m" +# define BOLD "\x1b[1m" +# define WEAK "\x1b[2m" +# define ITALIC "\x1b[3m" +# define UNDERLINE "\x1b[4m" + +# define CLR_BLACK "\x1b[30m" +# define CLR_RED "\x1b[31m" +# define CLR_GREEN "\x1b[32m" +# define CLR_YELLOW "\x1b[33m" +# define CLR_BLUE "\x1b[34m" +# define CLR_MAGENTA "\x1b[35m" +# define CLR_CYAN "\x1b[36m" +# define CLR_WHITE "\x1b[37m" + +size_t ft_strlen(char *s); +int ft_strcmp(const char *s1, const char *s2);