diff options
Diffstat (limited to 'src/p_split.h')
-rw-r--r-- | src/p_split.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/p_split.h b/src/p_split.h index 648e01c..00da660 100644 --- a/src/p_split.h +++ b/src/p_split.h @@ -13,6 +13,13 @@ #ifndef P_SPLIT_H #define P_SPLIT_H -char **p_split_line(const char line[]); +typedef struct s_split_block +{ + size_t pos[ARG_MAX / 2]; + int8_t nextif[ARG_MAX / 2]; + uint32_t count; +} t_split_block; + +char **p_split_line(char line[]); #endif |