aboutsummaryrefslogtreecommitdiff
path: root/src/lj_str.h
diff options
context:
space:
mode:
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);