crtlib: Force use xash strchrnul implementation on ios

This commit is contained in:
ksagameng
2026-01-04 22:33:44 +03:00
committed by a1batross
parent e39f8bf7c4
commit 0976d96419

View File

@@ -288,7 +288,7 @@ static inline char *Q_stristr( const char *s1, const char *s2 )
char *Q_stristr( const char *s1, const char *s2 );
#endif // !HAVE_STRCASESTR
#if HAVE_STRCHRNUL
#if HAVE_STRCHRNUL && !XASH_IOS
#define Q_strchrnul strchrnul
#else // !HAVE_STRCHRNUL
static inline char *Q_strchrnul( const char *s, int c )