mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
ircd: Add our buffer type as overload to strlcat/strlcpy vintage suite.
This commit is contained in:
parent
57ae71fe4e
commit
70326ed471
1 changed files with 16 additions and 0 deletions
|
@ -34,6 +34,8 @@ namespace ircd
|
|||
struct iequals;
|
||||
|
||||
// Vintage
|
||||
size_t strlcpy(const mutable_buffer &dst, const string_view &src);
|
||||
size_t strlcat(const mutable_buffer &dst, const string_view &src);
|
||||
size_t strlcpy(char *const &dest, const char *const &src, const size_t &bufmax);
|
||||
size_t strlcat(char *const &dest, const char *const &src, const size_t &bufmax);
|
||||
size_t strlcpy(char *const &dest, const string_view &src, const size_t &bufmax);
|
||||
|
@ -446,6 +448,13 @@ ircd::lstrip(const string_view &str,
|
|||
return pos != string_view::npos? string_view{str.substr(pos)} : string_view{};
|
||||
}
|
||||
|
||||
inline size_t
|
||||
ircd::strlcpy(const mutable_buffer &dst,
|
||||
const string_view &src)
|
||||
{
|
||||
return strlcpy(data(dst), src, size(dst));
|
||||
}
|
||||
|
||||
/// Copy a string to dst will guaranteed null terminated output
|
||||
inline size_t
|
||||
ircd::strlcpy(char *const &dst,
|
||||
|
@ -483,6 +492,13 @@ ircd::strlcpy(char *const &dst,
|
|||
}
|
||||
#endif
|
||||
|
||||
inline size_t
|
||||
ircd::strlcat(const mutable_buffer &dst,
|
||||
const string_view &src)
|
||||
{
|
||||
return strlcat(data(dst), src, size(dst));
|
||||
}
|
||||
|
||||
/// Append a string to dst will guaranteed null terminated output; Expects
|
||||
/// dst to have null termination before calling this function.
|
||||
inline size_t
|
||||
|
|
Loading…
Reference in a new issue