libft/tests/mandatory/toupper/test9.c
2023-10-26 18:06:04 +02:00

24 lines
1014 B
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* test9.c :+: :+: */
/* +:+ */
/* By: houtworm <codam@houtworm.net> +#+ */
/* +#+ */
/* Created: 2023/02/21 02:33:32 by houtworm #+# #+# */
/* Updated: 2023/10/18 17:17:28 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../../tmp/libft.h"
int main(void)
{
int c;
c = '@';
if (ft_toupper(c) != '@')
return (1);
return (0);
}