aboutsummaryrefslogtreecommitdiff
path: root/src/lj_buf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_buf.h')
-rw-r--r--src/lj_buf.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lj_buf.h b/src/lj_buf.h
index 951d39fd..5f78c4a9 100644
--- a/src/lj_buf.h
+++ b/src/lj_buf.h
@@ -66,13 +66,17 @@ static LJ_AINLINE char *lj_buf_more(SBuf *sb, MSize sz)
66} 66}
67 67
68/* Low-level buffer put operations */ 68/* Low-level buffer put operations */
69LJ_FUNC char *lj_buf_wmem(char *p, const void *q, MSize len); 69LJ_FUNC SBuf *lj_buf_putmem(SBuf *sb, const void *q, MSize len);
70LJ_FUNC SBuf * lj_buf_putmem(SBuf *sb, const void *q, MSize len);
71#if LJ_HASJIT 70#if LJ_HASJIT
72LJ_FUNC SBuf * LJ_FASTCALL lj_buf_putchar(SBuf *sb, int c); 71LJ_FUNC SBuf * LJ_FASTCALL lj_buf_putchar(SBuf *sb, int c);
73#endif 72#endif
74LJ_FUNC SBuf * LJ_FASTCALL lj_buf_putstr(SBuf *sb, GCstr *s); 73LJ_FUNC SBuf * LJ_FASTCALL lj_buf_putstr(SBuf *sb, GCstr *s);
75 74
75static LJ_AINLINE char *lj_buf_wmem(char *p, const void *q, MSize len)
76{
77 return (char *)memcpy(p, q, len) + len;
78}
79
76static LJ_AINLINE void lj_buf_putb(SBuf *sb, int c) 80static LJ_AINLINE void lj_buf_putb(SBuf *sb, int c)
77{ 81{
78 char *p = lj_buf_more(sb, 1); 82 char *p = lj_buf_more(sb, 1);