Home | History | Annotate | Download | only in src

Lines Matching defs:strncpy_s

89 int strncpy_s(char* dest, size_t dest_size, const char* source, size_t count) {
811 // Use _TRUNCATE or strncpy_s crashes (by design) if buffer is too small.
815 int result = strncpy_s(dest.start(), dest.length(), src, n);