1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

Fix strcasestr replacement

This commit is contained in:
Rémi Denis-Courmont 2009-04-11 20:59:13 +03:00
parent 31196681e0
commit 4385b3b040

View File

@ -26,7 +26,7 @@
#include <ctype.h>
#include <assert.h>
int strcasecmp (const char *psz_big, const char *psz_little)
char *strcasestr (const char *psz_big, const char *psz_little)
{
char *p_pos = (char *)psz_big;