aboutsummaryrefslogtreecommitdiff
path: root/Src/nu/winstr.c
blob: 1a97df28c7caae742e365bc87247b45a02cfda78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <windows.h>
#ifdef __cplusplus
extern "C" {
#endif
size_t __cdecl strlen(const char *s)
{
	return lstrlenA(s);
}

int __cdecl strcmp(const char *a, const char *b)
{
	return lstrcmpA(a,b);
}

#ifdef __cplusplus
}
#endif