minishell
is_valid_flag_char.c File Reference
#include "ft_printf_local.h"
#include "../ft_is/ft_is.h"
Include dependency graph for is_valid_flag_char.c:

Go to the source code of this file.

Functions

bool is_valid_flag_char (char c)
 

Function Documentation

◆ is_valid_flag_char()

bool is_valid_flag_char ( char  c)

Definition at line 16 of file is_valid_flag_char.c.

17 {
18  return (c == '-' || ft_isdigit(c) || c == '.'
19  || c == '#' || c == ' ' || c == '+');
20 }
int ft_isdigit(int c)
Definition: ft_isdigit.c:15
Here is the call graph for this function:
Here is the caller graph for this function: