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