about summary refs log tree commit diff stats
path: root/cmds.h
blob: 59511489df972aa03353f5bb6af3a1f05f93798b (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);
int exec(char *buf, state *s);

#endif