aboutsummaryrefslogtreecommitdiff
path: root/parser.h
blob: 2614615d6bcafbb309c5d9573e39eea47c177ebf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef PARSER_H
#define PARSER_H

#include "db.h"


typedef enum {
	META_COMMAND_SUCCESS,
	META_COMMAND_FAIL,
} metaCommandStatus;


int handleMetaCommand(inputBuffer *in);

int handleInput(inputBuffer *in);

#endif