equal
deleted
inserted
replaced
209 |
209 |
210 |
210 |
211 int __PHYSFS_platformStricmp(const char *x, const char *y) |
211 int __PHYSFS_platformStricmp(const char *x, const char *y) |
212 { |
212 { |
213 return(_stricmp(x, y)); |
213 return(_stricmp(x, y)); |
214 |
|
215 } /* __PHYSFS_platformStricmp */ |
214 } /* __PHYSFS_platformStricmp */ |
|
215 |
|
216 |
|
217 int __PHYSFS_platformStrnicmp(const char *x, const char *y, PHYSFS_uint32 len) |
|
218 { |
|
219 return(_strnicmp(x, y, (int) len)); |
|
220 } /* __PHYSFS_platformStrnicmp */ |
216 |
221 |
217 |
222 |
218 int __PHYSFS_platformExists(const char *fname) |
223 int __PHYSFS_platformExists(const char *fname) |
219 { |
224 { |
220 int retval=0; |
225 int retval=0; |