Searched refs:strSource (Results 1 – 1 of 1) sorted by relevance
198 const char *strSource in strcpy_s() argument201 std::size_t lenSourceWithNull = std::strlen(strSource) + 1; in strcpy_s()204 std::memcpy(strDestination, strSource, lenSourceWithNull); in strcpy_s()210 const char *strSource in strcat_s() argument213 std::size_t lenSourceWithNull = std::strlen(strSource) + 1; in strcat_s()217 std::memcpy(strDestination + lenDestination, strSource, lenSourceWithNull); in strcat_s()