blob: 125708bef18dc155e68a1fecc502e9bf0fc31144 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef __CONFIG_CMDS_H
#define __CONFIG_CMDS_H
typedef struct single_cmd_def
{
char *name;
void *(*callback)(void *);
} single_cmd_def;
//list all include files with commands
#include "cmd_date.h"
#include "cmd_uptime.h"
#include "cmd_version.h"
#include "cmd_ping.h"
#include "cmd_loadavg.h"
#include "cmd_rusage.h"
single_cmd_def confgi_cmd_list[] =
{
{"DATE",cmd_date},
{"UPTIME",cmd_uptime},
{"VERSION",cmd_version},
{"PING",cmd_ping},
{"LOADAVG",cmd_loadavg},
{"RUSE",cmd_rusage},
{NULL,NULL}
};
#endif
|