X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=lib%2Fstkstring.h;h=dfead5acb3bc831cd955f117144ea135dfb6318f;hb=4adf195fb2f36dfbd054745469fa1c580de2f61b;hp=1ed2568972f9f6606950a7fbd355596ba283741b;hpb=5d4c3f3f01730c49b82f9212749ce28f6f808658;p=libucw.git diff --git a/lib/stkstring.h b/lib/stkstring.h index 1ed25689..dfead5ac 100644 --- a/lib/stkstring.h +++ b/lib/stkstring.h @@ -1,7 +1,7 @@ /* * UCW Library -- Strings Allocated on the Stack * - * (c) 2005--2006 Martin Mares + * (c) 2005--2007 Martin Mares * (c) 2005 Tomas Valla * * This software may be freely distributed and used according to the terms @@ -10,6 +10,7 @@ #include #include +#include #define stk_strdup(s) ({ char *_s=(s); uns _l=strlen(_s)+1; char *_x=alloca(_l); memcpy(_x, _s, _l); _x; }) #define stk_strndup(s,n) ({ char *_s=(s); uns _l=strnlen(_s,(n)); char *_x=alloca(_l+1); memcpy(_x, _s, _l); _x[_l]=0; _x; }) @@ -17,13 +18,15 @@ #define stk_strmulticat(s...) ({ char *_s[]={s}; char *_x=alloca(stk_array_len(_s, ARRAY_SIZE(_s)-1)); stk_array_join(_x, _s, ARRAY_SIZE(_s)-1, 0); _x; }) #define stk_strarraycat(s,n) ({ char **_s=(s); int _n=(n); char *_x=alloca(stk_array_len(_s,_n)); stk_array_join(_x, _s, _n, 0); _x; }) #define stk_strjoin(s,n,sep) ({ char **_s=(s); int _n=(n); char *_x=alloca(stk_array_len(_s,_n)+_n-1); stk_array_join(_x, _s, _n, (sep)); _x; }) -#define stk_printf(f...) ({ uns _l=stk_printf_internal(f); char *_x=alloca(_l); memcpy(_x, stk_printf_buf, _l); _x; }) +#define stk_printf(f...) ({ uns _l=stk_printf_internal(f); char *_x=alloca(_l); sprintf(_x, f); _x; }) +#define stk_vprintf(f, args) ({ uns _l=stk_vprintf_internal(f, args); char *_x=alloca(_l); vsprintf(_x, f, args); _x; }) #define stk_hexdump(s,n) ({ uns _n=(n); char *_x=alloca(3*_n+1); stk_hexdump_internal(_x,(byte*)(s),_n); _x; }) #define stk_str_unesc(s) ({ byte *_s=(s); byte *_d=alloca(strlen(_s)+1); str_unesc(_d, _s); _d; }) +#define stk_fsize(n) ({ char *_s=alloca(16); stk_fsize_internal(_s, n); _s; }) uns stk_array_len(char **s, uns cnt); void stk_array_join(char *x, char **s, uns cnt, uns sep); -uns stk_printf_internal(char *x, ...) FORMAT_CHECK(printf,1,2); +uns stk_printf_internal(const char *x, ...) FORMAT_CHECK(printf,1,2); +uns stk_vprintf_internal(const char *x, va_list args); void stk_hexdump_internal(char *dst, byte *src, uns n); - -extern char *stk_printf_buf; +void stk_fsize_internal(char *dst, u64 size);