libasm/src/mylib.h
2026-06-12 13:09:21 +02:00

17 lines
256 B
C

#ifndef MYLIB_H
#define MYLIB_H
#include <string.h>
#ifdef __cplusplus
extern "C" {
#endif
size_t ft_strlen(char *str);
char *ft_strcpy(char *dest, const char *src);
int ft_strcmp (const char *p1, const char *p2);
#ifdef __cplusplus
}
#endif
#endif