docs: Adding the char/ and convert/ documentation folder

This commit is contained in:
Raphael 2024-10-31 14:51:47 +01:00
parent a5fe7484a1
commit 5a68f60c5d
11 changed files with 120 additions and 9 deletions

View file

@ -6,12 +6,18 @@
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/07 10:38:54 by rparodi #+# #+# */
/* Updated: 2023/11/07 16:59:18 by rparodi ### ########.fr */
/* Updated: 2024/10/31 12:55:28 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief convert the upper case to lower case
*
* @param c the character
* @return the character to lower case if is on upper
*/
int ft_tolower(int c)
{
if (c >= 'A' && c <= 'Z')