1/*
2 * Copyright 2005, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef FS_SHELL_EXTERNAL_COMMANDS_H
6#define FS_SHELL_EXTERNAL_COMMANDS_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12char *get_external_command(const char *prompt, char *input, int len);
13void reply_to_external_command(int result);
14void external_command_cleanup();
15
16#ifdef __cplusplus
17}
18#endif
19
20#endif	// FS_SHELL_EXTERNAL_COMMANDS_H
21