![]() |
tgrekov-fdf
HIVE fdf May 2024
|
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. | |
| int ft_toupper | ( | int | c | ) |
Convert lowercase letter to corresponding uppercase letter.
| [in] | c | Character to convert |
| int | If 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.