X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fstkstring.h;h=5cd2c6b85a2540f4ca13c9879f8b4c3abda6a3b3;hb=60418b4db60801d7c3fc995bf71f53ff5d898484;hp=d0d6ad7f34bdc5a2ad412817f05aaa2051b53b5e;hpb=031256ad2e123eec58521f8e3eb9496c197641d2;p=libucw.git diff --git a/ucw/stkstring.h b/ucw/stkstring.h index d0d6ad7f..5cd2c6b8 100644 --- a/ucw/stkstring.h +++ b/ucw/stkstring.h @@ -15,6 +15,7 @@ #include #include #include +#include "ucw/string.h" #define stk_strdup(s) ({ const char *_s=(s); uns _l=strlen(_s)+1; char *_x=alloca(_l); memcpy(_x, _s, _l); _x; }) #define stk_strndup(s,n) ({ const char *_s=(s); uns _l=strnlen(_s,(n)); char *_x=alloca(_l+1); memcpy(_x, _s, _l); _x[_l]=0; _x; })