Blame


1 12042ad7 2021-01-21 op /*
2 12042ad7 2021-01-21 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 12042ad7 2021-01-21 op *
4 12042ad7 2021-01-21 op * Permission to use, copy, modify, and distribute this software for any
5 12042ad7 2021-01-21 op * purpose with or without fee is hereby granted, provided that the above
6 12042ad7 2021-01-21 op * copyright notice and this permission notice appear in all copies.
7 12042ad7 2021-01-21 op *
8 12042ad7 2021-01-21 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 12042ad7 2021-01-21 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 12042ad7 2021-01-21 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 12042ad7 2021-01-21 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 12042ad7 2021-01-21 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 12042ad7 2021-01-21 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 12042ad7 2021-01-21 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 12042ad7 2021-01-21 op */
16 12042ad7 2021-01-21 op
17 12042ad7 2021-01-21 op #include <string.h>
18 12042ad7 2021-01-21 op
19 12042ad7 2021-01-21 op int
20 12042ad7 2021-01-21 op main(void)
21 12042ad7 2021-01-21 op {
22 12042ad7 2021-01-21 op char buf[3] = "a";
23 12042ad7 2021-01-21 op return ! (strlcat(buf, "b", sizeof(buf)) == 2 &&
24 12042ad7 2021-01-21 op buf[0] == 'a' && buf[1] == 'b' && buf[2] == '\0');
25 12042ad7 2021-01-21 op }