24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lib.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/18 22:35:00 by tischmid #+# #+# */
|
|
/* Updated: 2023/03/18 23:44:07 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_LIB_H
|
|
# define FT_LIB_H
|
|
|
|
char *ft_strcpy(char *s1, char *s2);
|
|
char *ft_strcat(char *s1, char *s2);
|
|
void ft_putchar(char c);
|
|
void ft_putstr(char *str);
|
|
void ft_putnbr(int nb);
|
|
int ft_atoi(char *str);
|
|
|
|
#endif
|