1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-19 07:02:13 +00:00
stmbl/shared/commands.h
2017-09-06 04:20:06 +02:00

13 lines
168 B
C

#pragma once
#include <stdint.h>
#define COMMAND(c, p, d)
uint32_t call_cmd(char *s);
typedef struct {
char name[32];
char *doc;
void (*ptr)(char *);
} cmd_t;