Merge of Fredrik Hultin command_line

This commit is contained in:
Marty Connor
2006-08-09 02:30:35 +00:00
parent 691557281f
commit 41af7457a8
13 changed files with 1184 additions and 0 deletions

16
src/include/cmdlist.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef COMMANDLIST_H
#define COMMANDLIST_H
void test_req();
void test2_req();
void help_req();
void commandlist()
{
test_req();
test2_req();
help_req();
}
#endif