feat(includes): adding the libasm header

This commit is contained in:
Raphael 2025-12-08 15:11:57 +01:00
parent 3be9dce9d6
commit 99bf4bb2d5
No known key found for this signature in database

23
includes/libasm.h Normal file
View file

@ -0,0 +1,23 @@
#pragma once
#include <stddef.h>
#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);