diff options
Diffstat (limited to 'src/p_line.c')
-rw-r--r-- | src/p_line.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/p_line.c b/src/p_line.c index c8381c8..5b51841 100644 --- a/src/p_line.c +++ b/src/p_line.c @@ -21,8 +21,7 @@ #include "s_struct.h" #include "u_utils.h" -static t_bool - p_check_whitespaces_only(char line[]) +static t_bool p_check_whitespaces_only(char line[]) { char *ptr; @@ -38,8 +37,7 @@ static t_bool return (TRUE); } -void - p_line(char line[], t_msh *msh) +void p_line(char line[], t_msh *msh) { if (p_check_whitespaces_only(line) == TRUE) { |