| 185 | |
| 186 | |
| 187 | char* dStrcpy(char *dst, const char *src) |
| 188 | { |
| 189 | AssertFatal(dst && src, "bad strings passed to dStrcpy()"); |
| 190 | return strcpy(dst,src); |
| 191 | } |
| 192 | |
| 193 | char* dStrncpy(char *dst, const char *src, dsize_t len) |
| 194 | { |
no outgoing calls
no test coverage detected