mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-15 00:34:55 -05:00
17 lines
No EOL
227 B
C
17 lines
No EOL
227 B
C
#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 |