Commander-API
V0.2A
Commander-API is a C API, that interprets character-based commands
|
Structure for command data. More...
#include <interpreter.h>
Public Attributes | |
uint16_t | place |
struct API_t * | left |
struct API_t * | right |
const char ** | name |
const char ** | desc |
void(* | func )(char *, int(*resp_fn)(const char *,...)) |
Structure for command data.
Every command will get a structure like this. This structure is used to store your commands in a balanced binary tree.
const char** API_t::desc |
void(* API_t::func) (char *, int(*resp_fn)(const char *,...)) |
struct API_t* API_t::left |
const char** API_t::name |
uint16_t API_t::place |
struct API_t* API_t::right |