tgrekov-pipex
HIVE pipex May 2024
Loading...
Searching...
No Matches
ft_toupper.c File Reference

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/23 13:39:01 by tgrekov #+# #+# */
/* Updated: 2023/11/06 15:37:19 by tgrekov ### ########.fr */
/* */
/* ************************************************************************** */

Definition in file ft_toupper.c.

Go to the source code of this file.

Functions

int ft_toupper (int c)
 Convert lowercase letter to corresponding uppercase letter.
 

Function Documentation

◆ ft_toupper()

int ft_toupper ( int  c)

Convert lowercase letter to corresponding uppercase letter.

Parameters
[in]cCharacter to convert
Return values
intIf c is a lowercase letter character, returns the integer representation of the corresponding uppercase letter character, otherwise returns c.

Definition at line 28 of file ft_toupper.c.