/* Copyright (C) 2000-2003 Markus Lausser (sgop@users.sf.net) This is free software distributed under the terms of the GNU Public License. See the file COPYING for details. */ #ifndef EXEC_H_ #define EXEC_H_ void exec_command(net_t* net, char *cmd); void exec_command_safe(void (*exit_cb)(void *, int), void *exit_cb_data, char *cmd, ...); void exec_init(void); void exec_shutdown(void); #endif