1 #ifndef FS_SHELL_ARGV_H 2 #define FS_SHELL_ARGV_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 9 /* this function takes a string and chops it into individual "words" */ 10 char **build_argv(char *str, int *argc); 11 12 13 #ifdef __cplusplus 14 } 15 #endif 16 17 #endif // FS_SHELL_ARGV_H 18