21 lines
1000 B
C
21 lines
1000 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_toupper.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: gbrochar <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2015/11/27 18:43:24 by gbrochar #+# #+# */
|
||
|
/* Updated: 2015/11/28 16:01:01 by gbrochar ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "libft.h"
|
||
|
|
||
|
int ft_toupper(int c)
|
||
|
{
|
||
|
if ((int)c >= 'a' && (int)c <= 'z')
|
||
|
c -= 32;
|
||
|
return (c);
|
||
|
}
|