21 lines
998 B
C
21 lines
998 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_toupper.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2016/12/01 15:26:03 by gtertysh #+# #+# */
|
||
|
/* Updated: 2016/12/01 15:58:00 by gtertysh ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "libft.h"
|
||
|
|
||
|
int ft_toupper(int c)
|
||
|
{
|
||
|
if (c >= 'a' && c <= 'z')
|
||
|
return (c - 32);
|
||
|
return (c);
|
||
|
}
|