xref: /haiku/src/tests/add-ons/kernel/file_systems/fs_shell/argv.h (revision 1e36cfc2721ef13a187c6f7354dc9cbc485e89d3)
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