mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 06:34:14 +00:00
9 lines
97 B
C
9 lines
97 B
C
#include "libft.h"
|
|
|
|
int ft_toupper(int c)
|
|
{
|
|
if ('a' <= c && c <= 'z')
|
|
c -= 32;
|
|
return (c);
|
|
}
|