blob: 78a1c1385d7acb4e7b050a8ddbc42b05a1397625 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef CMDS_H
#define CMDS_H
#include "state.h"
#include <stdlib.h>
extern command CMD_LIST[];
void init_state(state *s);
void exec(char *buf, state *s);
#endif
|