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