-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_toupper.c
20 lines (18 loc) · 1009 Bytes
/
ft_toupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bwebb <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/24 17:50:32 by bwebb #+# #+# */
/* Updated: 2019/05/30 11:58:52 by bwebb ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_toupper(int c)
{
if ((ft_isalpha(c) == 1) && (c > 96))
return (c - 32);
return (c);
}