docs: Adding the doxygen on all my function
This commit is contained in:
parent
707e9a4177
commit
f5bcbeac3c
38 changed files with 342 additions and 43 deletions
|
|
@ -6,12 +6,21 @@
|
|||
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/07 16:56:56 by rparodi #+# #+# */
|
||||
/* Updated: 2023/11/09 13:16:39 by rparodi ### ########.fr */
|
||||
/* Updated: 2024/10/31 18:13:58 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
/**
|
||||
* @brief Compares two strings up to a specified number of characters.
|
||||
*
|
||||
* @param s1 The first string to compare.
|
||||
* @param s2 The second string to compare.
|
||||
* @param n The maximum number of characters to compare.
|
||||
*
|
||||
* @return An integer indicating the relationship between the two strings.
|
||||
*/
|
||||
int ft_strncmp(const char *s1, const char *s2, size_t n)
|
||||
{
|
||||
size_t i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue