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