libasm/libasm.h

10 lines
137 B
C
Raw Normal View History

2024-02-24 07:17:58 +00:00
#ifndef _LIBASM_H
# define _LIBASM_H
#include <stdio.h>
2024-02-24 07:40:53 +00:00
size_t ft_strlen(const char *);
char *ft_strcpy(char *, const char *);
2024-02-24 07:17:58 +00:00
#endif