SmartAudio/package/avs/libsensory/files/wrapper/chk/wcstombs_chk.c

8 lines
188 B
C
Executable File

#include <stdlib.h>
#include "fortify.h"
size_t __wcstombs_chk(char *restrict s, const wchar_t *restrict ws, size_t n, size_t dn)
{
if(dn < n) __chk_fail();
return wcstombs(s, ws, n);
}