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