-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_todigit.c
20 lines (18 loc) · 993 Bytes
/
ft_todigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_todigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fokrober <fokrober@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/23 03:15:13 by fokrober #+# #+# */
/* Updated: 2019/04/23 14:31:53 by fokrober ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_todigit(int c)
{
if (ft_isdigit(c))
return (c - '0');
return (-1);
}