mirror of
https://github.com/kemko/liquid.git
synced 2026-01-05 09:45:40 +03:00
14 lines
205 B
C
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
|