make
An assembly language, often abbreviated asm, is a low-level programming language for a computer, or other programmable device, in which there is a very strong correspondence between the language and the architecture’s machine code instructions. Each assembly language is specific to a particular computer architecture.
- Implementation of some function with rules:
- 64 bits ASM
- Intel syntax
- Compile with nasm
size_t ft_strlen(const char *s);
int ft_strcmp(const char *str1, const char *str2);
char *ft_strcpy(char *str1, const char *str2);
char *ft_strdup(const char *str1);
ssize_t ft_read(int fd, void *buf, size_t count);
ssize_t ft_write(int fd, void *buf, size_t nbyte);