| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273 | /*  Copyright (C) 2002     Manuel Novoa III * *  This library is free software; you can redistribute it and/or *  modify it under the terms of the GNU Library General Public *  License as published by the Free Software Foundation; either *  version 2 of the License, or (at your option) any later version. * *  This library is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *  Library General Public License for more details. * *  You should have received a copy of the GNU Library General Public *  License along with this library; if not, write to the Free *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//*  ATTENTION!   ATTENTION!   ATTENTION!   ATTENTION!   ATTENTION! * *  Besides uClibc, I'm using this code in my libc for elks, which is *  a 16-bit environment with a fairly limited compiler.  It would make *  things much easier for me if this file isn't modified unnecessarily. *  In particular, please put any new or replacement functions somewhere *  else, and modify the makefile to use your version instead. *  Thanks.  Manuel * *  ATTENTION!   ATTENTION!   ATTENTION!   ATTENTION!   ATTENTION! */#define _GNU_SOURCE#include <string.h>#include <strings.h>#include <limits.h>#include <ctype.h>#include <stdlib.h>#ifdef WANT_WIDE#include <wchar.h>#include <wctype.h>#include <locale.h>#define Wvoid			wchar_t#define Wchar			wchar_t#define Wuchar			__uwchar_t#define Wint			wchar_t#else#define Wvoid			void#define Wchar			chartypedef unsigned char	__string_uchar_t;#define Wuchar			__string_uchar_t#define Wint			int#endif/**********************************************************************/#ifdef L_wmemcpy#define L_memcpy#define Wmemcpy wmemcpy#else#define Wmemcpy memcpy#endif#ifdef L_memcpyWvoid *Wmemcpy(Wvoid * __restrict s1, const Wvoid * __restrict s2, size_t n){	register Wchar *r1 = s1;	register const Wchar *r2 = s2;#ifdef __BCC__	while (n--) {		*r1++ = *r2++;	}#else	while (n) {		*r1++ = *r2++;		--n;	}#endif	return s1;}#endif/**********************************************************************/#ifdef L_wmemmove#define L_memmove#define Wmemmove wmemmove#else#define Wmemmove memmove#endif#ifdef L_memmoveWvoid *Wmemmove(Wvoid *s1, const Wvoid *s2, size_t n){#ifdef __BCC__	register Wchar *s = (Wchar *) s1;	register const Wchar *p = (const Wchar *) s2;	if (p >= s) {		while (n--) {			*s++ = *p++;		}	} else {		s += n;		p += n;		while (n--) {			*--s = *--p;		}	}	return s1;#else	register Wchar *s = (Wchar *) s1;	register const Wchar *p = (const Wchar *) s2;	if (p >= s) {		while (n) {			*s++ = *p++;			--n;		}	} else {		while (n) {			--n;			s[n] = p[n];		}	}	return s1;#endif}#endif/**********************************************************************/#ifdef L_wcscpy#define L_strcpy#define Wstrcpy wcscpy#else#define Wstrcpy strcpy#endif#ifdef L_strcpyWchar *Wstrcpy(Wchar * __restrict s1, const Wchar * __restrict s2){	register Wchar *s = s1;#ifdef __BCC__	do {		*s = *s2++;	} while (*s++ != 0);#else	while ( (*s++ = *s2++) != 0 );#endif	return s1;}#endif/**********************************************************************/#ifdef L_wcsncpy#define L_strncpy#define Wstrncpy wcsncpy#else#define Wstrncpy strncpy#endif#ifdef L_strncpyWchar *Wstrncpy(Wchar * __restrict s1, register const Wchar * __restrict s2,				size_t n){	register Wchar *s = s1;#ifdef __BCC__	while (n--) {		if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */		++s;	}#else	while (n) {		if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */		++s;		--n;	}#endif		return s1;}#endif/**********************************************************************/#ifdef L_wcscat#define L_strcat#define Wstrcat wcscat#else#define Wstrcat strcat#endif#ifdef L_strcatWchar *Wstrcat(Wchar * __restrict s1, register const Wchar * __restrict s2){	register Wchar *s = s1;	while (*s++);	--s;	while ((*s++ = *s2++) != 0);	return s1;}#endif/**********************************************************************/#ifdef L_wcsncat#define L_strncat#define Wstrncat wcsncat#else#define Wstrncat strncat#endif#ifdef L_strncatWchar *Wstrncat(Wchar * __restrict s1, register const Wchar * __restrict s2,				size_t n){	register Wchar *s = s1;	while (*s++);	--s;#if __BCC__	while (n-- && ((*s = *s2++) != 0)) ++s;#else	while (n && ((*s = *s2++) != 0)) {		--n;		++s;	}#endif	*s = 0;	return s1;}#endif/**********************************************************************/#ifdef L_wmemcmp#define L_memcmp#define Wmemcmp wmemcmp#else#define Wmemcmp memcmp#endif#ifdef L_memcmp#ifndef L_wmemcmpweak_alias(memcmp,bcmp)#endifint Wmemcmp(const Wvoid *s1, const Wvoid *s2, size_t n){	register const Wuchar *r1 = (const Wuchar *) s1;	register const Wuchar *r2 = (const Wuchar *) s2;#ifdef WANT_WIDE	while (n && (*r1 == *r2)) {		++r1;		++r2;		--n;	}	return (n == 0) ? 0 : ((*r1 < *r2) ? -1 : 1);#else	int r = 0;	while (n-- && ((r = ((int)(*r1++)) - *r2++) == 0));	return r;#endif}#endif/**********************************************************************/#ifdef L_wcscmp#define L_strcmp#define Wstrcmp wcscmp#else#define Wstrcmp strcmp#endif#ifdef L_strcmp#ifndef L_wcscmp#warning implement strcoll and remove weak alias (or enable for C locale only)weak_alias(strcmp, strcoll);#endifint Wstrcmp(register const Wchar *s1, register const Wchar *s2){#ifdef WANT_WIDE	while (*((Wuchar *)s1) == *((Wuchar *)s2)) {		if (!*s1++) {			return 0;		}		++s2;	}	return (*((Wuchar *)s1) < *((Wuchar *)s2)) ? -1 : 1;#else	int r;	while (((r = ((int)(*((Wuchar *)s1))) - *((Wuchar *)s2++))			== 0) && *s1++);		return r;#endif}#endif/**********************************************************************/#ifdef L_strcoll#error implement strcoll and remove weak_alias!!/*  extern unsigned char *_ctype_collate; *//*  int strcoll(register const char *s1, const char *s2) *//*  { *//*  	int r; *//*  	while (!(r = (_ctype_collate[(int)(*s1++)]-_ctype_collate[(int)(*s2++)]))); */	/*  	return r; *//*  } */#endif/**********************************************************************/#ifdef L_wcsncmp#define L_strncmp#define Wstrncmp wcsncmp#else#define Wstrncmp strncmp#endif#ifdef L_strncmpint Wstrncmp(register const Wchar *s1, register const Wchar *s2, size_t n){#ifdef WANT_WIDE	while (n && (*((Wuchar *)s1) == *((Wuchar *)s2))) {		if (!*s1++) {			return 0;		}		++s2;		--n;	}	return (n == 0) ? 0 : ((*((Wuchar *)s1) < *((Wuchar *)s2)) ? -1 : 1);#else	int r = 0;	while (n--		   && ((r = ((int)(*((unsigned char *)s1))) - *((unsigned char *)s2++))			== 0)		   && *s1++);	return r;#endif}#endif/**********************************************************************/#ifdef L_strxfrm#error implement strxfrm/*  size_t strxfrm(char * __restrict s1, const char * __restrict s2, size_t n) */#endif/**********************************************************************/#ifdef L_wmemchr#define L_memchr#define Wmemchr wmemchr#else#define Wmemchr memchr#endif#ifdef L_memchrWvoid *Wmemchr(const Wvoid *s, Wint c, size_t n){	register const Wuchar *r = (const Wuchar *) s;#ifdef __BCC__	/* bcc can optimize the counter if it thinks it is a pointer... */	register const char *np = (const char *) n;#else#define np n#endif	while (np) {		if (*r == ((Wuchar)c)) {			return (Wvoid *) r;	/* silence the warning */		}		++r;		--np;	}	return NULL;}#undef np#endif/**********************************************************************/#ifdef L_wcschr#define L_strchr#define Wstrchr wcschr#else#define Wstrchr strchr#endif#ifdef L_strchr#ifndef L_wcschrweak_alias(strchr,index)#endifWchar *Wstrchr(register const Wchar *s, Wint c){	do {		if (*s == ((Wchar)c)) {			return (Wchar *) s;	/* silence the warning */		}	} while (*s++);	return NULL;}#endif/**********************************************************************/#ifdef L_wcscspn#define L_strcspn#define Wstrcspn wcscspn#else#define Wstrcspn strcspn#endif#ifdef L_strcspnsize_t Wstrcspn(const Wchar *s1, const Wchar *s2){	register const Wchar *s;	register const Wchar *p;	for ( s=s1 ; *s ; s++ ) {		for ( p=s2 ; *p ; p++ ) {			if (*p == *s) goto done;		}	} done:	return s - s1;}#endif/**********************************************************************/#ifdef L_wcspbrk#define L_strpbrk#define Wstrpbrk wcspbrk#else#define Wstrpbrk strpbrk#endif#ifdef L_strpbrkWchar *Wstrpbrk(const Wchar *s1, const Wchar *s2){	register const Wchar *s;	register const Wchar *p;	for ( s=s1 ; *s ; s++ ) {		for ( p=s2 ; *p ; p++ ) {			if (*p == *s) return (Wchar *) s; /* silence the warning */		}	}	return NULL;}#endif/**********************************************************************/#ifdef L_wcsrchr#define L_strrchr#define Wstrrchr wcsrchr#else#define Wstrrchr strrchr#endif#ifdef L_strrchr#ifndef L_wcsrchrweak_alias(strrchr,rindex)#endifWchar *Wstrrchr(register const  Wchar *s, Wint c){	register const Wchar *p;	p = NULL;	do {		if (*s == (Wchar) c) {			p = s;		}	} while (*s++);	return (Wchar *) p;			/* silence the warning */}#endif/**********************************************************************/#ifdef L_wcsspn#define L_strspn#define Wstrspn wcsspn#else#define Wstrspn strspn#endif#ifdef L_strspnsize_t Wstrspn(const Wchar *s1, const Wchar *s2){	register const Wchar *s = s1;	register const Wchar *p = s2;	while (*p) {		if (*p++ == *s) {			++s;			p = s2;		}	}	return s - s1;}#endif/**********************************************************************/#ifdef L_wcsstr#define L_strstr#define Wstrstr wcsstr#else#define Wstrstr strstr#endif#ifdef L_strstr/* NOTE: This is the simple-minded O(len(s1) * len(s2)) worst-case approach. */#ifdef L_wcsstrweak_alias(wcsstr,wcswcs)#endifWchar *Wstrstr(const Wchar *s1, const Wchar *s2){	register const Wchar *s = s1;	register const Wchar *p = s2;	do {		if (!*p) {			return (Wchar *) s1;;		}		if (*p == *s) {			++p;			++s;		} else {			p = s2;			if (!*s) {				return NULL;			}			s = ++s1;		}	} while (1);}#endif/**********************************************************************/#ifdef L_wcstok#define L_strtok_r#define Wstrtok_r wcstok#define Wstrspn wcsspn#define Wstrpbrk wcspbrk#else#define Wstrtok_r strtok_r#define Wstrspn strspn#define Wstrpbrk strpbrk#endif#ifdef L_strtok_rWchar *Wstrtok_r(Wchar * __restrict s1, const Wchar * __restrict s2,				 Wchar ** __restrict next_start){	register Wchar *s;	register Wchar *p;#if 1	if (((s = s1) != NULL) || ((s = *next_start) != NULL)) {		if (*(s += Wstrspn(s, s2))) {			if ((p = Wstrpbrk(s, s2)) != NULL) {				*p++ = 0;			}		} else {			p = s = NULL;		}		*next_start = p;	}	return s;#else	if (!(s = s1)) {		s = *next_start;	}	if (s && *(s += Wstrspn(s, s2))) {		if (*(p = s + Wstrcspn(s, s2))) {			*p++ = 0;		}		*next_start = p;		return s;	}	return NULL;				/* TODO: set *next_start = NULL for safety? */#endif}#endif/**********************************************************************//*  #ifdef L_wcstok *//*  #define L_strtok *//*  #define Wstrtok wcstok *//*  #define Wstrtok_r wcstok_r *//*  #else *//*  #define Wstrtok strtok *//*  #define Wstrtok_r strtok_r *//*  #endif */#ifdef L_strtok#define Wstrtok strtok#define Wstrtok_r strtok_rWchar *Wstrtok(Wchar * __restrict s1, const Wchar * __restrict s2){	static Wchar *next_start;	/* Initialized to 0 since in bss. */	return Wstrtok_r(s1, s2, &next_start);}#endif/**********************************************************************/#ifdef L_wmemset#define L_memset#define Wmemset wmemset#else#define Wmemset memset#endif#ifdef L_memsetWvoid *Wmemset(Wvoid *s, Wint c, size_t n){	register Wuchar *p = (Wuchar *) s;#ifdef __BCC__	/* bcc can optimize the counter if it thinks it is a pointer... */	register const char *np = (const char *) n;#else#define np n#endif	while (np) {		*p++ = (Wuchar) c;		--np;	}	return s;}#undef np#endif/**********************************************************************/#ifdef L_strerror#error implement strerror/*  char *strerror(int errnum); */#endif/**********************************************************************/#ifdef L_wcslen#define L_strlen#define Wstrlen wcslen#else#define Wstrlen strlen#endif#ifdef L_strlensize_t Wstrlen(const Wchar *s){	register const Wchar *p;	for (p=s ; *p ; p++);	return p - s;}#endif/**********************************************************************//* ANSI/ISO end here *//**********************************************************************/#ifdef L_ffsint ffs(int i){#if 1	/* inlined binary search method */	char n = 1;#if UINT_MAX == 0xffffU	/* nothing to do here -- just trying to avoiding possible problems */#elif UINT_MAX == 0xffffffffU	if (!(i & 0xffff)) {		n += 16;		i >>= 16;	}#else#error ffs needs rewriting!#endif	if (!(i & 0xff)) {		n += 8;		i >>= 8;	}	if (!(i & 0x0f)) {		n += 4;		i >>= 4;	}	if (!(i & 0x03)) {		n += 2;		i >>= 2;	}	return (i) ? (n + ((i+1) & 0x01)) : 0;#else	/* linear search -- slow, but small */	int n;	for (n = 0 ; i ; ++n) {		i >>= 1;	}		return n;#endif}#endif/**********************************************************************/#ifdef L_wcscasecmp#define L_strcasecmp#define Wstrcasecmp wcscasecmp#else#define Wstrcasecmp strcasecmp#endif#ifdef L_strcasecmpint Wstrcasecmp(register const Wchar *s1, register const Wchar *s2){#ifdef WANT_WIDE	while ((*s1 == *s2) || (towlower(*s1) == towlower(*s2))) {		if (!*s1++) {			return 0;		}		++s2;	}	return (((Wuchar)towlower(*s1)) < ((Wuchar)towlower(*s2))) ? -1 : 1;	/* TODO -- should wide cmp funcs do wchar or Wuchar compares? */#else	int r = 0;	while ( ((s1 == s2) ||			 !(r = ((int)( tolower(*((Wuchar *)s1))))			   - tolower(*((Wuchar *)s2))))			&& (++s2, *s1++));	return r;#endif}#endif/**********************************************************************/#ifdef L_wcsncasecmp#define L_strncasecmp#define Wstrncasecmp wcsncasecmp#else#define Wstrncasecmp strncasecmp#endif#ifdef L_strncasecmpint Wstrncasecmp(register const Wchar *s1, register const Wchar *s2, size_t n){#ifdef WANT_WIDE	while (n && ((*s1 == *s2) || (towlower(*s1) == towlower(*s2)))) {		if (!*s1++) {			return 0;		}		++s2;		--n;	}	return (n == 0)		? 0		: ((((Wuchar)towlower(*s1)) < ((Wuchar)towlower(*s2))) ? -1 : 1);	/* TODO -- should wide cmp funcs do wchar or Wuchar compares? */#else	int r = 0;	while ( n			&& ((s1 == s2) ||				!(r = ((int)( tolower(*((unsigned char *)s1))))				  - tolower(*((unsigned char *)s2))))			&& (--n, ++s2, *s1++));	return r;#endif}#endif/**********************************************************************/#ifdef L_wcsnlen#define L_strnlen#define Wstrnlen wcsnlen#else#define Wstrnlen strnlen#endif#ifdef L_strnlensize_t Wstrnlen(const Wchar *s, size_t max){	register const Wchar *p = s;#ifdef __BCC__	/* bcc can optimize the counter if it thinks it is a pointer... */	register const char *maxp = (const char *) max;#else#define maxp max#endif	while (maxp && *p) {		++p;		--maxp;	}	return p - s;}#undef maxp#endif/**********************************************************************//* No wide analog. */#ifdef L_memccpyvoid *memccpy(void * __restrict s1, const void * __restrict s2, int c, size_t n){	register char *r1 = s1;	register const char *r2 = s2;	while (n-- && (((unsigned char)(*r1++ = *r2++)) != ((unsigned char) c)));	return (n == (size_t) -1) ? NULL : r1;}#endif/**********************************************************************/#ifdef L_wcsdup#define L_strdup#define Wstrdup wcsdup#define Wstrlen wcslen#define Wstrcpy wcscpy#else#define Wstrdup strdup#define Wstrlen strlen#define Wstrcpy strcpy#endif#ifdef L_strdupWchar *Wstrdup(register const Wchar *s1){	register Wchar *s;    if ((s = malloc((Wstrlen(s1) + 1) * sizeof(Wchar))) != NULL) {		Wstrcpy(s, s1);	}	return s;}#endif/**********************************************************************//* GNU extension functions. *//**********************************************************************/#ifdef L_wmempcpy#define L_mempcpy#define Wmempcpy wmempcpy#else#define Wmempcpy mempcpy#endif#ifdef L_mempcpy#ifndef L_wmempcpy/* uClibc's old string implementation did this to cater to some app. */weak_alias(mempcpy,__mempcpy)#endifWvoid *Wmempcpy(Wvoid * __restrict s1, const Wvoid * __restrict s2, size_t n){	register Wchar *r1 = s1;	register const Wchar *r2 = s2;#ifdef __BCC__	while (n--) {		*r1++ = *r2++;	}#else	while (n) {		*r1++ = *r2++;		--n;	}#endif	return r1;}#endif/**********************************************************************/#ifdef L_memrchrvoid *memrchr(const void *s, int c, size_t n){	register const unsigned char *r;#ifdef __BCC__	/* bcc can optimize the counter if it thinks it is a pointer... */	register const char *np = (const char *) n;#else#define np n#endif		r = ((unsigned char *)s) + ((size_t) np);	while (np) {		if (*--r == ((unsigned char)c)) {			return (void *) r;	/* silence the warning */		}		--np;	}	return NULL;}#undef np#endif/**********************************************************************/#ifdef L_stpcpychar *stpcpy(register char * __restrict s1, const char * __restrict s2){#ifdef __BCC__	do {		*s1 = *s2++;	} while (*s1++ != 0);#else	while ( (*s1++ = *s2++) != 0 );#endif	return s1 - 1;}#endif/**********************************************************************/#ifdef L_stpncpychar *stpncpy(register char * __restrict s1,			  register const char * __restrict s2,			  size_t n){	char *s = s1;	const char *p = s2;#ifdef __BCC__	while (n--) {		if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */		++s;	}	return s1 + (s2 - p);#else	while (n) {		if ((*s = *s2) != 0) s2++; /* Need to fill tail with 0s. */		++s;		--n;	}	return s1 + (s2 - p);#endif}#endif/**********************************************************************/#ifdef L_bzerovoid bzero(void *s, size_t n){	register unsigned char *p = s;#ifdef __BCC__	/* bcc can optimize the counter if it thinks it is a pointer... */	register const char *np = (const char *) n;#else#define np n#endif	while (np) {		*p++ = 0;		--np;	}}#undef np#endif/**********************************************************************/#ifdef L_bcopyvoid bcopy(const void *s2, void *s1, size_t n){#if 1	memmove(s1, s2, n);#else#ifdef __BCC__	register char *s;	register const char *p;	s = s1;	p = s2;	if (p >= s) {		while (n--) {			*s++ = *p++;		}	} else {		s += n;		p += n;		while (n--) {			*--s = *--p;		}	}#else	register char *s;	register const char *p;	s = s1;	p = s2;	if (p >= s) {		while (n) {			*s++ = *p++;			--n;		}	} else {		while (n) {			--n;			s[n] = p[n];		}	}#endif#endif}#endif/**********************************************************************/#ifdef L_strcasestrchar *strcasestr(const char *s1, const char *s2){	register const char *s = s1;	register const char *p = s2;#if 1	do {		if (!*p) {			return (char *) s1;;		}		if ((*p == *s)			|| (tolower(*((unsigned char *)p)) == tolower(*((unsigned char *)s)))			) {			++p;			++s;		} else {			p = s2;			if (!*s) {				return NULL;			}			s = ++s1;		}	} while (1);#else	while (*p && *s) {		if ((*p == *s)			|| (tolower(*((unsigned char *)p)) == tolower(*((unsigned char *)s)))			) {			++p;			++s;		} else {			p = s2;			s = ++s1;		}	}	return (*p) ? NULL : (char *) s1;#endif}#endif/**********************************************************************/#ifdef L_strndupchar *strndup(register const char *s1, size_t n){	register char *s;	n = strnlen(s1,n);			/* Avoid problems if s1 not nul-terminated. */    if ((s = malloc(n + 1)) != NULL) {		memcpy(s, s1, n);		s[n] = 0;	}	return s;}#endif/**********************************************************************/#ifdef L_strsepchar *strsep(char ** __restrict s1, const char * __restrict s2){	register char *s = *s1;	register char *p;#if 1	p = NULL;	if (s && *s && (p = strpbrk(s, s2))) {		*p++ = 0;	}#else	if (s && *s && *(p = s + strcspn(s, s2))) {		*p++ = 0;	} else {		p = NULL;	}#endif	*s1 = p;	return s;}#endif/**********************************************************************/#ifdef L_wcschrnul#define L_strchrnul#define Wstrchrnul wcschrnul#else#define Wstrchrnul strchrnul#endif#ifdef L_strchrnulWchar *Wstrchrnul(register const Wchar *s, Wint c){	--s;	while (*++s && (*s != ((Wchar)c)));	return (Wchar *) s;}#endif/**********************************************************************/#ifdef L_rawmemchrvoid *rawmemchr(const void *s, int c){	register const unsigned char *r = s;	while (*r != ((unsigned char)c)) ++r;	return (void *) r;	/* silence the warning */}#endif/**********************************************************************/#ifdef L_basenamechar *basename(const char *path){	register const char *s;	register const char *p;	p = s = path;	while (*s) {		if (*s++ == '/') {			p = s;		}	}	return (char *) p;}#endif/**********************************************************************/#ifdef L___xpg_basenamechar *__xpg_basename(register char *path){	static const char null_or_empty[] = ".";	char *first;	register char *last;	first = (char *) null_or_empty;	if (path && *path) {		first = path;		last = path - 1;		do {			if ((*path != '/') && (path > ++last)) {				last = first = path;			}		} while (*++path);		if (*first == '/') {			last = first;		}		last[1] = 0;	}	return first;}#endif/**********************************************************************/#ifdef L_dirnamechar *dirname(char *path){	static const char null_or_empty_or_noslash[] = ".";	register char *s;	register char *last;	char *first;	last = s = path;	if (s != NULL) {	LOOP:		while (*s && (*s != '/')) ++s;		first = s;		while (*s == '/') ++s;		if (*s) {			last = first;			goto LOOP;		}		if (last == path) {			if (*last != '/') {				goto DOT;			}			if ((*++last == '/') && (last[1] == 0)) {				++last;			}		}		*last = 0;		return path;	} DOT:	return (char *) null_or_empty_or_noslash;}#endif/**********************************************************************/
 |