mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
17 lines
275 B
C
17 lines
275 B
C
#ifndef LIQUID_EXT_H
|
|
#define LIQUID_EXT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <ctype.h>
|
|
#include <ruby.h>
|
|
|
|
#include "tokenizer.h"
|
|
#include "block.h"
|
|
#include "utils.h"
|
|
#include "variable.h"
|
|
|
|
extern VALUE mLiquid;
|
|
extern VALUE cLiquidTemplate, cLiquidTag, cLiquidVariable;
|
|
|
|
#endif
|