blob: 11f102c12bb6460907c0de938bac601f6b981961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (C) Yichun Zhang (agentzh)
*/
#ifndef _NGX_HTTP_LUA_LEX_H_INCLUDED_
#define _NGX_HTTP_LUA_LEX_H_INCLUDED_
#include "ngx_http_lua_common.h"
int ngx_http_lua_lex(const u_char *const s, size_t len, int *const ovec);
#endif
|