1 | /* |
---|---|
2 | ** Object de/serialization. |
3 | ** Copyright (C) 2005-2021 Mike Pall. See Copyright Notice in luajit.h |
4 | */ |
5 | |
6 | #ifndef _LJ_SERIALIZE_H |
7 | #define _LJ_SERIALIZE_H |
8 | |
9 | #include "lj_obj.h" |
10 | #include "lj_buf.h" |
11 | |
12 | #if LJ_HASBUFFER |
13 | |
14 | #define LJ_SERIALIZE_DEPTH 100 /* Default depth. */ |
15 | |
16 | LJ_FUNC StrBuf * LJ_FASTCALL lj_serialize_put(StrBuf *sb, cTValue *o); |
17 | LJ_FUNC StrBuf * LJ_FASTCALL lj_serialize_get(StrBuf *sb, TValue *o); |
18 | |
19 | #endif |
20 | |
21 | #endif |
22 |