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:44:26 by rparodi #+# #+# */
/* Updated: 2023/11/08 18:08:21 by rparodi ### ########.fr */
/* Updated: 2024/10/31 12:55:14 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief convert the lower case to upper case
*
* @param c the character
* @return the character to upper case if is on lower
*/
int ft_toupper(int c)
{
if (c >= 'a' && c <= 'z')