No description
- C 67.3%
- Makefile 14.8%
- Assembly 14.4%
- Shell 3.5%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| linux_version | ||
| mac_version | ||
| tester | ||
| LibASM.png | ||
| Makefile | ||
| README.md | ||
LibASM
A small asm library of usefull functions
- Little preview
Installation :
make
Usage :
- you need to add those prototypes
size_t ft_read(int fd, const void *buf, size_t nbyte);
int ft_strcmp(const char *str1, const char *str2);
char *ft_strcpy(char *dst, const char *src);
char *ft_strdup(const char *src);
size_t ft_strlen(const char *s);
size_t ft_write(int fd, const void *buf, size_t nbyte);
- 🌱 Made at 42
