1/*
2 * Copyright 2005-2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _FSSH_EXTERNAL_COMMANDS_H
6#define _FSSH_EXTERNAL_COMMANDS_H
7
8
9namespace FSShell {
10
11
12bool	get_external_command(char* input, int len);
13void	reply_to_external_command(int result);
14void	external_command_cleanup();
15
16
17}	// namespace FSShell
18
19
20#endif	// _FSSH_EXTERNAL_COMMANDS_H
21