| 43 | } |
| 44 | |
| 45 | inline char* strncpy(char * dst, const char * src, size_t len) |
| 46 | { |
| 47 | AsciiStrnCpyS(dst,(UINTN)len+1,src,(UINTN)len); |
| 48 | return dst; |
| 49 | } |
| 50 | |
| 51 | //// edkII Strcmp seems quite inefficient, even vs a naive implementation |
| 52 | int strcmp(const char* s1, const char* s2); |
no test coverage detected