aboutsummaryrefslogtreecommitdiff
path: root/src/lj_strfmt.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-13 00:34:15 +0200
committerMike Pall <mike>2013-05-13 01:23:33 +0200
commit625ffca739a703906fbc321ef9405514d72480fe (patch)
treeca279d81071e8aa749797e0867e168c9db5c2bbe /src/lj_strfmt.h
parent19a9206caf1df71308bd8e4bd61c082026c6811c (diff)
downloadluajit-625ffca739a703906fbc321ef9405514d72480fe.tar.gz
luajit-625ffca739a703906fbc321ef9405514d72480fe.tar.bz2
luajit-625ffca739a703906fbc321ef9405514d72480fe.zip
Refactor raw object to pointer or string conversions.
Diffstat (limited to '')
-rw-r--r--src/lj_strfmt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_strfmt.h b/src/lj_strfmt.h
index c440f946..6f3dc0be 100644
--- a/src/lj_strfmt.h
+++ b/src/lj_strfmt.h
@@ -82,6 +82,8 @@ LJ_FUNC SBuf *lj_strfmt_putnum_int(SBuf *sb, SFormat sf, lua_Number n);
82LJ_FUNC SBuf *lj_strfmt_putnum_uint(SBuf *sb, SFormat sf, lua_Number n); 82LJ_FUNC SBuf *lj_strfmt_putnum_uint(SBuf *sb, SFormat sf, lua_Number n);
83LJ_FUNC SBuf *lj_strfmt_putnum(SBuf *sb, SFormat, lua_Number n); 83LJ_FUNC SBuf *lj_strfmt_putnum(SBuf *sb, SFormat, lua_Number n);
84 84
85LJ_FUNC GCstr *lj_strfmt_obj(lua_State *L, cTValue *o);
86
85LJ_FUNC const char *lj_strfmt_pushvf(lua_State *L, const char *fmt, 87LJ_FUNC const char *lj_strfmt_pushvf(lua_State *L, const char *fmt,
86 va_list argp); 88 va_list argp);
87LJ_FUNC const char *lj_strfmt_pushf(lua_State *L, const char *fmt, ...) 89LJ_FUNC const char *lj_strfmt_pushf(lua_State *L, const char *fmt, ...)