mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 00:34:15 +00:00
feat(libft.h): update ft_memcmp description
This commit is contained in:
6
libft.h
6
libft.h
@@ -129,7 +129,11 @@ int ft_strncmp(const char *s1, const char *s2, size_t n);
|
||||
*/
|
||||
void *ft_memchr(const void *s, int c, size_t n);
|
||||
|
||||
// TODO
|
||||
/*
|
||||
The memcmp() function compares byte
|
||||
string s1 against byte string s2.
|
||||
Both strings are assumed to be n bytes long.
|
||||
*/
|
||||
int ft_memcmp(const void *s1, const void *s2, size_t n);
|
||||
|
||||
// TODO
|
||||
|
||||
Reference in New Issue
Block a user