diff options
| author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-28 01:26:44 +0100 | 
|---|---|---|
| committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-28 01:26:44 +0100 | 
| commit | f6faf88cd0991be3184af67d5fa271b12f70e925 (patch) | |
| tree | 02c283541fd2c0b4ccacd31172cccf2ba9711c51 /src/p_split.h | |
| parent | Norming in progress (diff) | |
| download | 42-minishell-f6faf88cd0991be3184af67d5fa271b12f70e925.tar.gz 42-minishell-f6faf88cd0991be3184af67d5fa271b12f70e925.tar.bz2 42-minishell-f6faf88cd0991be3184af67d5fa271b12f70e925.tar.xz 42-minishell-f6faf88cd0991be3184af67d5fa271b12f70e925.tar.zst 42-minishell-f6faf88cd0991be3184af67d5fa271b12f70e925.zip  | |
Norming
Diffstat (limited to '')
| -rw-r--r-- | src/p_split.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/src/p_split.h b/src/p_split.h index 94ff29f..c52d7df 100644 --- a/src/p_split.h +++ b/src/p_split.h @@ -20,13 +20,13 @@  #  include <limits.h>  # endif -typedef struct	s_split_block +typedef struct		s_split_block  { -	size_t		pos[ARG_MAX / 2]; -	char		nextif[ARG_MAX / 2]; +	size_t			pos[ARG_MAX / 2]; +	char			nextif[ARG_MAX / 2];  	unsigned int	count; -}				t_split_block; +}					t_split_block; -char			**p_split_line(char line[]); +char				**p_split_line(char line[]);  #endif  | 
