changeset 596 | 381b6ca0dd85 |
parent 578 | bff1af8455ca |
child 651 | cbe4ea4c7e8e |
child 675 | 6b25ff23fa66 |
--- a/platform/pocketpc.c Sat Sep 13 02:30:55 2003 +0000 +++ b/platform/pocketpc.c Sun Nov 09 20:59:07 2003 +0000 @@ -211,8 +211,13 @@ int __PHYSFS_platformStricmp(const char *x, const char *y) { return(_stricmp(x, y)); +} /* __PHYSFS_platformStricmp */ -} /* __PHYSFS_platformStricmp */ + +int __PHYSFS_platformStrnicmp(const char *x, const char *y, PHYSFS_uint32 len) +{ + return(_strnicmp(x, y, (int) len)); +} /* __PHYSFS_platformStrnicmp */ int __PHYSFS_platformExists(const char *fname)