diff options
author | Mike Pall <mike> | 2013-05-12 22:37:02 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-05-12 23:13:27 +0200 |
commit | 5bb1f0edac809302b299e189fb3c4006e0bc939a (patch) | |
tree | 390fd09e3d3e5ad80f38ae6f7b78cc27dd769221 /src/lj_str.h | |
parent | bb2cc1dcaff90406f431f90ef822ddd7df70200d (diff) | |
download | luajit-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.h | 2 |
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. */ |
28 | LJ_FUNC char * LJ_FASTCALL lj_str_bufint(char *buf, int32_t k); | 28 | LJ_FUNC char * LJ_FASTCALL lj_str_bufint(char *p, int32_t k); |
29 | LJ_FUNC char * LJ_FASTCALL lj_str_bufnum(char *p, cTValue *o); | 29 | LJ_FUNC char * LJ_FASTCALL lj_str_bufnum(char *p, cTValue *o); |
30 | LJ_FUNC char * LJ_FASTCALL lj_str_bufptr(char *p, const void *v); | 30 | LJ_FUNC char * LJ_FASTCALL lj_str_bufptr(char *p, const void *v); |
31 | LJ_FUNC const char *lj_str_buftv(char *buf, cTValue *o, MSize *lenp); | 31 | LJ_FUNC const char *lj_str_buftv(char *buf, cTValue *o, MSize *lenp); |