| 125 | #endif |
| 126 | |
| 127 | static inline const char* CopyTo(const char* from, char* buf, size_t len) { |
| 128 | strfcpy(buf, from, len); |
| 129 | |
| 130 | return buf; |
| 131 | } |
| 132 | |
| 133 | TResolvedSymbol ResolveSymbol(void* sym, char* buf, size_t len) { |
| 134 | TResolvedSymbol ret = { |
no test coverage detected