aboutsummaryrefslogtreecommitdiff
path: root/ft_isprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_isprint.c')
-rw-r--r--ft_isprint.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/ft_isprint.c b/ft_isprint.c
index 6834120..397271d 100644
--- a/ft_isprint.c
+++ b/ft_isprint.c
@@ -1,4 +1,16 @@
-int ft_isprint(int c)
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_isprint.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2019/10/07 09:52:09 by cacharle #+# #+# */
+/* Updated: 2019/10/07 09:52:10 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+int ft_isprint(int c)
{
- return (c >= ' ' && c <= '~');
+ return (c >= ' ' && c <= '~');
}