minishell
is_valid_conv_char.c File Reference
#include "ft_printf_local.h"
Include dependency graph for is_valid_conv_char.c:

Go to the source code of this file.

Functions

bool is_valid_conv_char (char c)
 

Function Documentation

◆ is_valid_conv_char()

bool is_valid_conv_char ( char  c)

Definition at line 15 of file is_valid_conv_char.c.

16 {
17  return (c == 'c' || c == 's' || c == 'p' || c == 'd' || c == 'i' || c == 'u'
18  || c == 'x' || c == 'X' || c == '%');
19 }
Here is the caller graph for this function: