diff options
| author | Dominik Kaiser | 2024-03-10 13:37:45 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2024-03-10 13:37:45 +0100 |
| commit | 4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea (patch) | |
| tree | e25f459959a69578322529aca6d2a02cb2d3dfcf /ft_toupper.c | |
| parent | 3c90d29fe5bf9ba6da090cd59c8c139d269f8bd4 (diff) | |
| download | libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.tar.gz libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.zip | |
Complete missing functions and add header
Diffstat (limited to 'ft_toupper.c')
| -rw-r--r-- | ft_toupper.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ft_toupper.c b/ft_toupper.c index 5082232..51e4ba6 100644 --- a/ft_toupper.c +++ b/ft_toupper.c @@ -6,10 +6,12 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/04 21:33:34 by dkaiser #+# #+# */ -/* Updated: 2024/03/04 21:49:16 by dkaiser ### ########.fr */ +/* Updated: 2024/03/10 13:15:26 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ +#include "libft.h" + int ft_toupper(int c) { if (c >= 'a' && c <= 'z') |
