Files
liquid/ext/liquid/variable.h
2014-02-28 12:35:15 -05:00

14 lines
205 B
C

#ifndef LIQUID_VARIABLE_H
#define LIQUID_VARIABLE_H
#include <regex.h>
struct liquid_variable {
char *markup; long markup_len;
char *name; long name_len;
};
void init_liquid_variable();
#endif