File: test-strlcat.c

package info (click to toggle)
mdocml 1.14.6-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 10,536 kB
  • sloc: ansic: 37,110; makefile: 1,159; sh: 562; perl: 413
file content (9 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#include <string.h>

int
main(void)
{
	char buf[3] = "a";
	return ! (strlcat(buf, "b", sizeof(buf)) == 2 &&
	    buf[0] == 'a' && buf[1] == 'b' && buf[2] == '\0');
}