#ifndef I_SPLIT
#define I_SPLIT

extern char *next_arg(char **str);
extern char *m_grab_word(char **str, char letter);
extern int grab_word(char **str, char letter, char *word);
extern int clean_word(char **str, char *word);
extern int line_split(char *line, split *temp);

#endif
