blob: 623cac7658d9ab96e436410f28ff886bb4cf6467 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|