File indexing completed on 2025-01-18 10:02:03
0001 #ifndef MAD_EXEC_H
0002 #define MAD_EXEC_H
0003
0004
0005
0006 struct in_cmd;
0007
0008
0009
0010 void exec_option(struct in_cmd*);
0011 void exec_help(struct in_cmd*);
0012 void exec_assign(struct in_cmd*);
0013 void exec_call(struct in_cmd*);
0014 void exec_chdir(struct in_cmd*);
0015 void exec_cmd_delete(struct in_cmd*);
0016 void exec_print(struct in_cmd*);
0017 void exec_printf(struct in_cmd*);
0018 void exec_show(struct in_cmd*);
0019 void exec_dump(struct in_cmd*);
0020 void exec_shrink_table(struct in_cmd* cmd);
0021 void exec_fill_table(struct in_cmd*);
0022 void exec_fill_knob_table(struct in_cmd*);
0023 void exec_create_table(struct in_cmd*);
0024 void exec_removefile(struct in_cmd*);
0025 void exec_renamefile(struct in_cmd*);
0026 void exec_copyfile(struct in_cmd* cmd);
0027 void exec_setvars_table(struct in_cmd*);
0028 void exec_setvars_lin_table(struct in_cmd*);
0029 void exec_setvars_knob_table(struct in_cmd*);
0030 void exec_setvars_const_table(struct in_cmd*);
0031 void exec_store_coguess(struct in_cmd*);
0032 void exec_delete_table(const char* name);
0033
0034 #endif