ft_strncmp: initial implementation
This commit is contained in:
parent
10cf338cbf
commit
b176bdaebe
3 changed files with 53 additions and 3 deletions
3
libft.h
3
libft.h
|
|
@ -6,7 +6,7 @@
|
|||
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
|
||||
/* Updated: 2024/10/16 10:34:08 by kcolin ### ########.fr */
|
||||
/* Updated: 2024/10/16 13:23:08 by kcolin ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -35,5 +35,6 @@ int ft_tolower(int c);
|
|||
|
||||
char *ft_strchr(const char *s, int c);
|
||||
char *ft_strrchr(const char *s, int c);
|
||||
int ft_strncmp(const char *s1, const char *s2, t_size n);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue