aboutsummaryrefslogtreecommitdiffstats
path: root/dm.h
blob: 1f27e57c6eed5aed3980a9b0d8c46a065e59f7c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __DM_H
#define __DM_H

#include <stdint.h>
#include <string.h>
#include <sys/types.h>

#include "darray.h"
#include "tokenizer.h"

#define __VER__ "0.3 beta"


int parse_dm( token_list *tl, const char* );

#endif