also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
7 lines
101 B
C
Vendored
7 lines
101 B
C
Vendored
#include <string.h>
|
|
|
|
char *strrchr(const char *s, int c)
|
|
{
|
|
return __memrchr(s, c, strlen(s) + 1);
|
|
}
|