diff options
author | Mike Pall <mike> | 2013-05-13 00:34:15 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-05-13 01:23:33 +0200 |
commit | 625ffca739a703906fbc321ef9405514d72480fe (patch) | |
tree | ca279d81071e8aa749797e0867e168c9db5c2bbe /src/lj_strfmt.h | |
parent | 19a9206caf1df71308bd8e4bd61c082026c6811c (diff) | |
download | luajit-625ffca739a703906fbc321ef9405514d72480fe.tar.gz luajit-625ffca739a703906fbc321ef9405514d72480fe.tar.bz2 luajit-625ffca739a703906fbc321ef9405514d72480fe.zip |
Refactor raw object to pointer or string conversions.
Diffstat (limited to 'src/lj_strfmt.h')
-rw-r--r-- | src/lj_strfmt.h | 2 |
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); | |||
82 | LJ_FUNC SBuf *lj_strfmt_putnum_uint(SBuf *sb, SFormat sf, lua_Number n); | 82 | LJ_FUNC SBuf *lj_strfmt_putnum_uint(SBuf *sb, SFormat sf, lua_Number n); |
83 | LJ_FUNC SBuf *lj_strfmt_putnum(SBuf *sb, SFormat, lua_Number n); | 83 | LJ_FUNC SBuf *lj_strfmt_putnum(SBuf *sb, SFormat, lua_Number n); |
84 | 84 | ||
85 | LJ_FUNC GCstr *lj_strfmt_obj(lua_State *L, cTValue *o); | ||
86 | |||
85 | LJ_FUNC const char *lj_strfmt_pushvf(lua_State *L, const char *fmt, | 87 | LJ_FUNC const char *lj_strfmt_pushvf(lua_State *L, const char *fmt, |
86 | va_list argp); | 88 | va_list argp); |
87 | LJ_FUNC const char *lj_strfmt_pushf(lua_State *L, const char *fmt, ...) | 89 | LJ_FUNC const char *lj_strfmt_pushf(lua_State *L, const char *fmt, ...) |