123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
-
-
-
-
- #include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
-
-
-
- #ifndef __HAVE_ARCH_STRCPY
-
- char * strcpy(char * dest,const char *src)
- {
- char *tmp = dest;
-
- while ((*dest++ = *src++) != '\0')
- ;
- return tmp;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRNCPY
-
- char * strncpy(char * dest,const char *src,size_t count)
- {
- char *tmp = dest;
-
- while (count-- && (*dest++ = *src++) != '\0')
- ;
-
- return tmp;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRCAT
-
- char * strcat(char * dest, const char * src)
- {
- char *tmp = dest;
-
- while (*dest)
- dest++;
- while ((*dest++ = *src++) != '\0')
- ;
-
- return tmp;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRCMP
-
- int strcmp(const char * cs,const char * ct)
- {
- register signed char __res;
-
- while (1) {
- if ((__res = *cs - *ct++) != 0 || !*cs++)
- break;
- }
-
- return __res;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRNCMP
-
- int strncmp(const char * cs,const char * ct,size_t count)
- {
- register signed char __res = 0;
-
- while (count) {
- if ((__res = *cs - *ct++) != 0 || !*cs++)
- break;
- count--;
- }
-
- return __res;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRCASECMP
- int strcasecmp(const char *a, const char *b)
- {
- while (*a && *b && (*a & ~0x20) == (*b & ~0x20)) {a++; b++; }
- return((*a & ~0x20) - (*b & ~0x20));
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRCHR
-
- char * strchr(const char * s, int c)
- {
- for(; *s != (char) c; ++s)
- if (*s == '\0')
- return NULL;
- return (char *) s;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRRCHR
-
- char * strrchr(const char * s, int c)
- {
- const char *p = s + strlen(s);
- do {
- if (*p == (char)c)
- return (char *)p;
- } while (--p >= s);
- return NULL;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRLEN
-
- size_t strlen(const char * s)
- {
- const char *sc;
-
- for (sc = s; *sc != '\0'; ++sc)
- ;
- return sc - s;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRNLEN
-
- size_t strnlen(const char * s, size_t count)
- {
- const char *sc;
-
- for (sc = s; count-- && *sc != '\0'; ++sc)
- ;
- return sc - s;
- }
- #endif
-
- #ifndef __HAVE_ARCH_MEMSET
-
- void * memset(void * s,int c,size_t count)
- {
- char *xs = (char *) s;
-
- while (count--)
- *xs++ = c;
-
- return s;
- }
- #endif
-
- #ifndef __HAVE_ARCH_MEMCPY
-
- void * memcpy(void * dest,const void *src,size_t count)
- {
- char *tmp = (char *) dest, *s = (char *) src;
-
- while (count--)
- *tmp++ = *s++;
-
- return dest;
- }
- #endif
-
- #ifndef __HAVE_ARCH_MEMMOVE
-
- void * memmove(void * dest,const void *src,size_t count)
- {
- char *tmp, *s;
-
- if (dest <= src) {
- tmp = (char *) dest;
- s = (char *) src;
- while (count--)
- *tmp++ = *s++;
- }
- else {
- tmp = (char *) dest + count;
- s = (char *) src + count;
- while (count--)
- *--tmp = *--s;
- }
-
- return dest;
- }
- #endif
-
- #ifndef __HAVE_ARCH_MEMCMP
-
- int memcmp(const void * cs,const void * ct,size_t count)
- {
- const unsigned char *su1, *su2;
- int res = 0;
-
- for( su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
- if ((res = *su1 - *su2) != 0)
- break;
- return res;
- }
- #endif
-
- #ifndef __HAVE_ARCH_STRSTR
-
- char * strstr(const char * s1,const char * s2)
- {
- int l1, l2;
-
- l2 = strlen(s2);
- if (!l2)
- return (char *) s1;
- l1 = strlen(s1);
- while (l1 >= l2) {
- l1--;
- if (!memcmp(s1,s2,l2))
- return (char *) s1;
- s1++;
- }
- return NULL;
- }
- #endif
-
- #ifndef __HAVE_ARCH_MEMCHR
-
- void * memchr(const void *s, int c, size_t n)
- {
- const unsigned char *p = s;
- while (n-- != 0) {
- if ((unsigned char)c == *p++) {
- return (void *)(p-1);
- }
- }
- return NULL;
- }
-
- #endif
-
- char * strndup(const char *s, size_t n)
- {
- size_t len = strlen(s);
- char *new;
-
- if (len>n)
- len = n;
- new = malloc(len+1);
- if (new) {
- new[len] = '\0';
- memcpy(new,s,len);
- }
- return new;
- }
-
- char * strdup(const char *s) {
- return strndup(s, ~((size_t)0));
- }
|