aboutsummaryrefslogtreecommitdiff
path: root/src/lj_buf.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-04-27 15:51:50 +0200
committerMike Pall <mike>2013-04-27 15:51:50 +0200
commit64d2883ab4fdd3090d8a428aafc9a2bb3a1ec724 (patch)
treed44858c5103ec89234d584ee113766468ff3c175 /src/lj_buf.h
parent723574d08cf9f902bd917e83d8fe25717690b0c6 (diff)
downloadluajit-64d2883ab4fdd3090d8a428aafc9a2bb3a1ec724.tar.gz
luajit-64d2883ab4fdd3090d8a428aafc9a2bb3a1ec724.tar.bz2
luajit-64d2883ab4fdd3090d8a428aafc9a2bb3a1ec724.zip
Refactor table.concat().
Diffstat (limited to 'src/lj_buf.h')
-rw-r--r--src/lj_buf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_buf.h b/src/lj_buf.h
index 4d764938..6931a693 100644
--- a/src/lj_buf.h
+++ b/src/lj_buf.h
@@ -36,6 +36,8 @@ LJ_FUNCA SBuf * LJ_FASTCALL lj_buf_putstr_reverse(SBuf *sb, GCstr *s);
36LJ_FUNCA SBuf * LJ_FASTCALL lj_buf_putstr_lower(SBuf *sb, GCstr *s); 36LJ_FUNCA SBuf * LJ_FASTCALL lj_buf_putstr_lower(SBuf *sb, GCstr *s);
37LJ_FUNCA SBuf * LJ_FASTCALL lj_buf_putstr_upper(SBuf *sb, GCstr *s); 37LJ_FUNCA SBuf * LJ_FASTCALL lj_buf_putstr_upper(SBuf *sb, GCstr *s);
38LJ_FUNC SBuf *lj_buf_putstr_rep(SBuf *sb, GCstr *s, int32_t rep); 38LJ_FUNC SBuf *lj_buf_putstr_rep(SBuf *sb, GCstr *s, int32_t rep);
39LJ_FUNC SBuf *lj_buf_puttab(SBuf *sb, GCtab *t, GCstr *sep,
40 int32_t i, int32_t e);
39LJ_FUNCA GCstr * LJ_FASTCALL lj_buf_tostr(SBuf *sb); 41LJ_FUNCA GCstr * LJ_FASTCALL lj_buf_tostr(SBuf *sb);
40LJ_FUNC GCstr *lj_buf_cat2str(lua_State *L, GCstr *s1, GCstr *s2); 42LJ_FUNC GCstr *lj_buf_cat2str(lua_State *L, GCstr *s1, GCstr *s2);
41LJ_FUNC uint32_t LJ_FASTCALL lj_buf_ruleb128(const char **pp); 43LJ_FUNC uint32_t LJ_FASTCALL lj_buf_ruleb128(const char **pp);