summaryrefslogtreecommitdiff
path: root/src/lj_str.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-12 22:37:02 +0200
committerMike Pall <mike>2013-05-12 23:13:27 +0200
commit5bb1f0edac809302b299e189fb3c4006e0bc939a (patch)
tree390fd09e3d3e5ad80f38ae6f7b78cc27dd769221 /src/lj_str.h
parentbb2cc1dcaff90406f431f90ef822ddd7df70200d (diff)
downloadluajit-5bb1f0edac809302b299e189fb3c4006e0bc939a.tar.gz
luajit-5bb1f0edac809302b299e189fb3c4006e0bc939a.tar.bz2
luajit-5bb1f0edac809302b299e189fb3c4006e0bc939a.zip
Refactor string.format().
Diffstat (limited to 'src/lj_str.h')
-rw-r--r--src/lj_str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_str.h b/src/lj_str.h
index dd9b3d94..6e08764e 100644
--- a/src/lj_str.h
+++ b/src/lj_str.h
@@ -25,7 +25,7 @@ LJ_FUNC void LJ_FASTCALL lj_str_free(global_State *g, GCstr *s);
25#define lj_str_newlit(L, s) (lj_str_new(L, "" s, sizeof(s)-1)) 25#define lj_str_newlit(L, s) (lj_str_new(L, "" s, sizeof(s)-1))
26 26
27/* Type conversions. */ 27/* Type conversions. */
28LJ_FUNC char * LJ_FASTCALL lj_str_bufint(char *buf, int32_t k); 28LJ_FUNC char * LJ_FASTCALL lj_str_bufint(char *p, int32_t k);
29LJ_FUNC char * LJ_FASTCALL lj_str_bufnum(char *p, cTValue *o); 29LJ_FUNC char * LJ_FASTCALL lj_str_bufnum(char *p, cTValue *o);
30LJ_FUNC char * LJ_FASTCALL lj_str_bufptr(char *p, const void *v); 30LJ_FUNC char * LJ_FASTCALL lj_str_bufptr(char *p, const void *v);
31LJ_FUNC const char *lj_str_buftv(char *buf, cTValue *o, MSize *lenp); 31LJ_FUNC const char *lj_str_buftv(char *buf, cTValue *o, MSize *lenp);