FIX first part of mandatory functions
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/11/05 11:14:13 by dgaillet #+# #+# */
|
||||
/* Updated: 2025/11/05 11:16:46 by dgaillet ### ########lyon.fr */
|
||||
/* Updated: 2025/11/06 10:04:03 by dgaillet ### ########lyon.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
int ft_isprint(int c)
|
||||
{
|
||||
if ((c >= 40 && c <= 126) || (c >= 7 && c <= 13))
|
||||
if (c >= 32 && c <= 126)
|
||||
return (1);
|
||||
return (0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user