Made C++ safe.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11548 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-03-03 00:40:03 +00:00
parent 25209a1365
commit ea8e6dbaab

View File

@ -1,2 +1,17 @@
#ifndef FS_SHELL_ARGV_H
#define FS_SHELL_ARGV_H
#ifdef __cplusplus
extern "C" {
#endif
/* this function takes a string and chops it into individual "words" */
char **build_argv(char *str, int *argc);
#ifdef __cplusplus
}
#endif
#endif // FS_SHELL_ARGV_H