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