style(str): normed the header

This commit is contained in:
Raphael 2025-09-05 17:34:30 +02:00
parent e1625857f2
commit a3accb9d0a
No known key found for this signature in database

View file

@ -149,7 +149,7 @@ char *ft_substr(char const *s, unsigned int start, size_t len);
* - `0` if `s1` equals `s2`. * - `0` if `s1` equals `s2`.
* - `> 0` if `s1` is greater than `s2`. * - `> 0` if `s1` is greater than `s2`.
*/ */
int ft_strcmp(const char *s1, const char *s2); int ft_strcmp(const char *s1, const char *s2);
/** /**
* @brief Compares two strings up to a specified number of characters. * @brief Compares two strings up to a specified number of characters.
@ -201,6 +201,6 @@ size_t ft_strlen(const char *s);
* *
* @return void * @return void
*/ */
void ft_striteri(char *s, void (*f)(unsigned int, char*)); void ft_striteri(char *s, void (*f)(unsigned int, char *));
#endif #endif