blob: 9526cd598c5f5f024288d5ffaf5462c921713e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <string.h>
#include "nonstd/assert.h"
/** concatenate strings **/
char * strcat(char * restrict s1, const char * restrict s2)
{
ASSERT_NONNULL(s1);
ASSERT_NONNULL(s2);
ASSERT_NOOVERLAP(s1, s2, strlen(s1) + strlen(s2));
/*
RETURN_ALWAYS(ARGUMENT(s1));
*/
return strncat(s1, s2, strlen(s2));
}
/***
appends a copy of the string at ARGUMENT(s2) to the end of
the string at ARGUMENT(s1). The first byte of ARGUMENT(s2) will overwrite the terminating
null character of ARGUMENT(s1).
***/
/*
STDC(1)
*/
|