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

8 lines
188 B
C
Raw Normal View History

2018-07-13 01:31:50 +00:00
#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);
}