X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilcutil%2Fsilcstrutil.h;h=e29be0724152d616371c53980e236a9488b3c3ac;hb=b424d54ae3239007b4d4e2e9b3f4bf55781450bb;hp=1f0608cf02720e317be5ec8254e134080f0cf346;hpb=c32aeb89f054fc9f183120cc8e106f07e16a6472;p=silc.git diff --git a/lib/silcutil/silcstrutil.h b/lib/silcutil/silcstrutil.h index 1f0608cf..e29be072 100644 --- a/lib/silcutil/silcstrutil.h +++ b/lib/silcutil/silcstrutil.h @@ -214,4 +214,21 @@ silc_mime_parse(const unsigned char *mime, SilcUInt32 mime_len, char *transfer_encoding, SilcUInt32 transfer_encoding_size, unsigned char **mime_data_ptr, SilcUInt32 *mime_data_len); +/****f* silcutil/SilcStrUtilAPI/silc_strncat + * + * SYNOPSIS + * + * char *silc_strncat(char *dest, SilcUInt32 dest_size, + * const char *src, SilcUInt32 src_len); + * + * DESCRIPTION + * + * Concatenates the `src' into `dest'. If `src_len' is more than the + * size of the `dest' (minus NULL at the end) the `src' will be + * truncated to fit. + * + ***/ +char *silc_strncat(char *dest, SilcUInt32 dest_size, + const char *src, SilcUInt32 src_len); + #endif /* SILCSTRUTIL_H */