1 /* 2 * Copyright 2005-2007, Ingo Weinhold, bonefish@cs.tu-berlin.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef _FSSH_COMMAND_CP_H 7 #define _FSSH_COMMAND_CP_H 8 9 10 #include "fssh_defs.h" 11 12 13 namespace FSShell { 14 15 16 fssh_status_t command_cp(int argc, const char* const* argv); 17 18 19 } // namespace FSShell 20 21 22 #endif // _FSSH_COMMAND_CP_H 23