-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathin_precision.c
More file actions
20 lines (18 loc) · 993 Bytes
/
in_precision.c
File metadata and controls
20 lines (18 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* in_precision.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hiroshiusui <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/01/31 02:37:53 by hiroshius #+# #+# */
/* Updated: 2018/01/31 02:37:53 by hiroshius ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
bool in_precision(char c)
{
if (ft_isdigit(c))
return (1);
return (0);
}