8 lines
180 B
C
8 lines
180 B
C
|
#include <string.h>
|
||
|
#include "fortify.h"
|
||
|
|
||
|
char *__strncat_chk(char *restrict d, const char *restrict s, size_t n, size_t dn)
|
||
|
{
|
||
|
if(dn < n) __chk_fail();
|
||
|
return strncat(d, s, n);
|
||
|
}
|