]> git.baikalelectronics.ru Git - kernel.git/commit
tools/nolibc/string: add tiny versions of strncat() and strlcat()
authorWilly Tarreau <w@1wt.eu>
Mon, 7 Feb 2022 16:23:43 +0000 (17:23 +0100)
committerPaul E. McKenney <paulmck@kernel.org>
Thu, 21 Apr 2022 00:05:44 +0000 (17:05 -0700)
commitf82988f479607b9995668c979c024279144a2030
tree532e422f22cfd694c6271e241605053c0f176f3a
parent55229e1bac2b89d0963ac1a38810f0ea8909deb1
tools/nolibc/string: add tiny versions of strncat() and strlcat()

While these functions are often dangerous, forcing the user to work
around their absence is often much worse. Let's provide small versions
of each of them. The respective sizes in bytes on a few architectures
are:

  strncat(): x86:0x33 mips:0x68 arm:0x3c
  strlcat(): x86:0x25 mips:0x4c arm:0x2c

The two are quite different, and strncat() is even different from
strncpy() in that it limits the amount of data it copies and will always
terminate the output by one zero, while strlcat() will always limit the
total output to the specified size and will put a zero if possible.

Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
tools/include/nolibc/string.h