| 1038 | } |
| 1039 | |
| 1040 | void ImStrncpy(char* dst, const char* src, size_t count) |
| 1041 | { |
| 1042 | if (count < 1) return; |
| 1043 | strncpy(dst, src, count); |
| 1044 | dst[count - 1] = 0; |
| 1045 | } |
| 1046 | |
| 1047 | char* ImStrdup(const char* str) |
| 1048 | { |
no outgoing calls
no test coverage detected