123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766 |
- /* Copyright (C) 2002 Manuel Novoa III
- * From my (incomplete) stdlib library for linux and (soon) elks.
- *
- * 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!
- *
- * This code is currently under development. Also, I plan to port
- * it to elks which is a 16-bit environment with a fairly limited
- * compiler. Therefore, please refrain from modifying this code
- * and, instead, pass any bug-fixes, etc. to me. Thanks. Manuel
- *
- * ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION! */
- #define _ISOC99_SOURCE /* for ULLONG primarily... */
- #define _GNU_SOURCE
- #include <limits.h>
- #include <stdint.h>
- #include <inttypes.h>
- #include <ctype.h>
- #include <errno.h>
- #include <assert.h>
- #include <unistd.h>
- /* Work around gcc's refusal to create aliases.
- * TODO: Add in a define to disable the aliases? */
- #if UINT_MAX == ULONG_MAX
- #define atoi __ignore_atoi
- #define abs __ignore_abs
- #endif
- #if defined(ULLONG_MAX) && (ULLONG_MAX == ULONG_MAX)
- #define llabs __ignore_llabs
- #define atoll __ignore_atoll
- #define strtoll __ignore_strtoll
- #define strtoull __ignore_strtoull
- #endif
- #include <stdlib.h>
- #if UINT_MAX == ULONG_MAX
- #undef atoi
- #undef abs
- #endif
- #if defined(ULLONG_MAX) && (ULLONG_MAX == ULONG_MAX)
- #undef llabs
- #undef atoll
- #undef strtoll
- #undef strtoull
- #endif
- extern unsigned long
- _stdlib_strto_l(register const char * __restrict str,
- char ** __restrict endptr, int base, int sflag);
- #if defined(ULLONG_MAX)
- extern unsigned long long
- _stdlib_strto_ll(register const char * __restrict str,
- char ** __restrict endptr, int base, int sflag);
- #endif
- /**********************************************************************/
- #ifdef L_atof
- double atof(const char *nptr)
- {
- return strtod(nptr, (char **) NULL);
- }
- #endif
- /**********************************************************************/
- #ifdef L_abs
- #if INT_MAX < LONG_MAX
- int abs(int j)
- {
- return (j >= 0) ? j : -j;
- }
- #endif /* INT_MAX < LONG_MAX */
- #endif
- /**********************************************************************/
- #ifdef L_labs
- #if UINT_MAX == ULONG_MAX
- strong_alias(labs,abs)
- #endif
- #if defined(ULLONG_MAX) && (ULLONG_MAX == ULONG_MAX)
- strong_alias(labs,llabs)
- #endif
- #if ULONG_MAX == UINTMAX_MAX
- strong_alias(labs,imaxabs)
- #endif
- long int labs(long int j)
- {
- return (j >= 0) ? j : -j;
- }
- #endif
- /**********************************************************************/
- #ifdef L_llabs
- #if defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX)
- #if (ULLONG_MAX == UINTMAX_MAX)
- strong_alias(llabs,imaxabs)
- #endif
- long long int llabs(long long int j)
- {
- return (j >= 0) ? j : -j;
- }
- #endif /* defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX) */
- #endif
- /**********************************************************************/
- #ifdef L_atoi
- #if INT_MAX < LONG_MAX
- int atoi(const char *nptr)
- {
- return (int) strtol(nptr, (char **) NULL, 10);
- }
- #endif /* INT_MAX < LONG_MAX */
- #endif
- /**********************************************************************/
- #ifdef L_atol
- #if UINT_MAX == ULONG_MAX
- strong_alias(atol,atoi)
- #endif
- #if defined(ULLONG_MAX) && (ULLONG_MAX == ULONG_MAX)
- strong_alias(atol,atoll)
- #endif
- long atol(const char *nptr)
- {
- return strtol(nptr, (char **) NULL, 10);
- }
- #endif
- /**********************************************************************/
- #ifdef L_atoll
- #if defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX)
- long long atoll(const char *nptr)
- {
- return strtoll(nptr, (char **) NULL, 10);
- }
- #endif /* defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX) */
- #endif
- /**********************************************************************/
- #ifdef L_strtol
- #if ULONG_MAX == UINTMAX_MAX
- strong_alias(strtol,strtoimax)
- #endif
- #if defined(ULLONG_MAX) && (ULLONG_MAX == ULONG_MAX)
- strong_alias(strtol,strtoll)
- #endif
- long strtol(const char * __restrict str, char ** __restrict endptr, int base)
- {
- return _stdlib_strto_l(str, endptr, base, 1);
- }
- #endif
- /**********************************************************************/
- #ifdef L_strtoll
- #if defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX)
- #if (ULLONG_MAX == UINTMAX_MAX)
- strong_alias(strtoll,strtoimax)
- #endif
- long long strtoll(const char * __restrict str,
- char ** __restrict endptr, int base)
- {
- return (long long) _stdlib_strto_ll(str, endptr, base, 1);
- }
- #endif /* defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX) */
- #endif
- /**********************************************************************/
- #ifdef L_strtoul
- #if ULONG_MAX == UINTMAX_MAX
- strong_alias(strtoul,strtoumax)
- #endif
- #if defined(ULLONG_MAX) && (ULLONG_MAX == ULONG_MAX)
- strong_alias(strtoul,strtoull)
- #endif
- unsigned long strtoul(const char * __restrict str,
- char ** __restrict endptr, int base)
- {
- return _stdlib_strto_l(str, endptr, base, 0);
- }
- #endif
- /**********************************************************************/
- #ifdef L_strtoull
- #if defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX)
- #if (ULLONG_MAX == UINTMAX_MAX)
- strong_alias(strtoull,strtoumax)
- #endif
- unsigned long long strtoull(const char * __restrict str,
- char ** __restrict endptr, int base)
- {
- return _stdlib_strto_ll(str, endptr, base, 0);
- }
- #endif /* defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX) */
- #endif
- /**********************************************************************/
- /* Support routines follow */
- /**********************************************************************/
- /* Set if we want errno set appropriately. */
- /* NOTE: Implies _STRTO_ENDPTR below */
- #define _STRTO_ERRNO 1
- /* Set if we want support for the endptr arg. */
- /* Implied by _STRTO_ERRNO. */
- #define _STRTO_ENDPTR 1
- #if _STRTO_ERRNO
- #undef _STRTO_ENDPTR
- #define _STRTO_ENDPTR 1
- #define SET_ERRNO(X) __set_errno(X)
- #else
- #define SET_ERRNO(X) ((void)(X)) /* keep side effects */
- #endif
- /**********************************************************************/
- #ifdef L__stdlib_strto_l
- /* This is the main work fuction which handles both strtol (sflag = 1) and
- * strtoul (sflag = 0). */
- unsigned long _stdlib_strto_l(register const char * __restrict str,
- char ** __restrict endptr, int base, int sflag)
- {
- unsigned long number, cutoff;
- #if _STRTO_ENDPTR
- const char *fail_char;
- #define SET_FAIL(X) fail_char = (X)
- #else
- #define SET_FAIL(X) ((void)(X)) /* Keep side effects. */
- #endif
- unsigned char negative, digit, cutoff_digit;
- assert((sflag == 0) || (sflag == 1));
- SET_FAIL(str);
- while (isspace(*str)) { /* Skip leading whitespace. */
- ++str;
- }
- /* Handle optional sign. */
- negative = 0;
- switch(*str) {
- case '-': negative = 1; /* Fall through to increment str. */
- case '+': ++str;
- }
- if (!(base & ~0x10)) { /* Either dynamic (base = 0) or base 16. */
- base += 10; /* Default is 10 (26). */
- if (*str == '0') {
- SET_FAIL(++str);
- base -= 2; /* Now base is 8 or 16 (24). */
- if ((0x20|(*str)) == 'x') { /* WARNING: assumes ascii. */
- ++str;
- base += base; /* Base is 16 (16 or 48). */
- }
- }
- if (base > 16) { /* Adjust in case base wasn't dynamic. */
- base = 16;
- }
- }
- number = 0;
- if (((unsigned)(base - 2)) < 35) { /* Legal base. */
- cutoff_digit = ULONG_MAX % base;
- cutoff = ULONG_MAX / base;
- do {
- digit = (((unsigned char)(*str - '0')) <= 9)
- ? (*str - '0')
- : ((*str >= 'A')
- ? (((0x20|(*str)) - 'a' + 10)) /* WARNING: assumes ascii. */
- : 40);
- if (digit >= base) {
- break;
- }
- SET_FAIL(++str);
- if ((number > cutoff)
- || ((number == cutoff) && (digit > cutoff_digit))) {
- number = ULONG_MAX;
- negative &= sflag;
- SET_ERRNO(ERANGE);
- } else {
- number = number * base + digit;
- }
- } while (1);
- }
- #if _STRTO_ENDPTR
- if (endptr) {
- *endptr = (char *) fail_char;
- }
- #endif
- {
- unsigned long tmp = ((negative)
- ? ((unsigned long)(-(1+LONG_MIN)))+1
- : LONG_MAX);
- if (sflag && (number > tmp)) {
- number = tmp;
- SET_ERRNO(ERANGE);
- }
- }
- return negative ? (unsigned long)(-((long)number)) : number;
- }
- #endif
- /**********************************************************************/
- #ifdef L__stdlib_strto_ll
- #if defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX)
- /* This is the main work fuction which handles both strtoll (sflag = 1) and
- * strtoull (sflag = 0). */
- unsigned long long _stdlib_strto_ll(register const char * __restrict str,
- char ** __restrict endptr, int base,
- int sflag)
- {
- unsigned long long number;
- #if _STRTO_ENDPTR
- const char *fail_char;
- #define SET_FAIL(X) fail_char = (X)
- #else
- #define SET_FAIL(X) ((void)(X)) /* Keep side effects. */
- #endif
- unsigned int n1;
- unsigned char negative, digit;
- assert((sflag == 0) || (sflag == 1));
- SET_FAIL(str);
- while (isspace(*str)) { /* Skip leading whitespace. */
- ++str;
- }
- /* Handle optional sign. */
- negative = 0;
- switch(*str) {
- case '-': negative = 1; /* Fall through to increment str. */
- case '+': ++str;
- }
- if (!(base & ~0x10)) { /* Either dynamic (base = 0) or base 16. */
- base += 10; /* Default is 10 (26). */
- if (*str == '0') {
- SET_FAIL(++str);
- base -= 2; /* Now base is 8 or 16 (24). */
- if ((0x20|(*str)) == 'x') { /* WARNING: assumes ascii. */
- ++str;
- base += base; /* Base is 16 (16 or 48). */
- }
- }
- if (base > 16) { /* Adjust in case base wasn't dynamic. */
- base = 16;
- }
- }
- number = 0;
- if (((unsigned)(base - 2)) < 35) { /* Legal base. */
- do {
- digit = (((unsigned char)(*str - '0')) <= 9)
- ? (*str - '0')
- : ((*str >= 'A')
- ? (((0x20|(*str)) - 'a' + 10)) /* WARNING: assumes ascii. */
- : 40);
- if (digit >= base) {
- break;
- }
- SET_FAIL(++str);
- #if 1
- /* Optional, but speeds things up in the usual case. */
- if (number <= (ULLONG_MAX >> 6)) {
- number = number * base + digit;
- } else
- #endif
- {
- n1 = ((unsigned char) number) * base + digit;
- number = (number >> CHAR_BIT) * base;
- if (number + (n1 >> CHAR_BIT) <= (ULLONG_MAX >> CHAR_BIT)) {
- number = (number << CHAR_BIT) + n1;
- } else { /* Overflow. */
- number = ULLONG_MAX;
- negative &= sflag;
- SET_ERRNO(ERANGE);
- }
- }
- } while (1);
- }
- #if _STRTO_ENDPTR
- if (endptr) {
- *endptr = (char *) fail_char;
- }
- #endif
- {
- unsigned long long tmp = ((negative)
- ? ((unsigned long long)(-(1+LLONG_MIN)))+1
- : LLONG_MAX);
- if (sflag && (number > tmp)) {
- number = tmp;
- SET_ERRNO(ERANGE);
- }
- }
- return negative ? (unsigned long long)(-((long long)number)) : number;
- }
- #endif /* defined(ULLONG_MAX) && (LLONG_MAX > LONG_MAX) */
- #endif
- /**********************************************************************/
- /* Made _Exit() an alias for _exit(), as per C99. */
- /* #ifdef L__Exit */
- /* void _Exit(int status) */
- /* { */
- /* _exit(status); */
- /* } */
- /* #endif */
- /**********************************************************************/
- #ifdef L_bsearch
- void *bsearch(const void *key, const void *base, size_t /* nmemb */ high,
- size_t size, int (*compar)(const void *, const void *))
- {
- register char *p;
- size_t low;
- size_t mid;
- int r;
- if (size > 0) { /* TODO: change this to an assert?? */
- low = 0;
- while (low < high) {
- mid = low + ((high - low) >> 1); /* Avoid possible overflow here. */
- p = ((char *)base) + mid * size; /* Could overflow here... */
- r = (*compar)(key, p); /* but that's an application problem! */
- if (r > 0) {
- low = mid + 1;
- } else if (r < 0) {
- high = mid;
- } else {
- return p;
- }
- }
- }
- return NULL;
- }
- #endif
- /**********************************************************************/
- #ifdef L_qsort
- /* This code is derived from a public domain shell sort routine by
- * Ray Gardner and found in Bob Stout's snippets collection. The
- * original code is included below in an #if 0/#endif block.
- *
- * I modified it to avoid the possibility of overflow in the wgap
- * calculation, as well as to reduce the generated code size with
- * bcc and gcc. */
- void qsort (void *base,
- size_t nel,
- size_t width,
- int (*comp)(const void *, const void *))
- {
- size_t wgap, i, j, k;
- char tmp;
- if ((nel > 1) && (width > 0)) {
- assert( nel <= ((size_t)(-1)) / width ); /* check for overflow */
- wgap = 0;
- do {
- wgap = 3 * wgap + 1;
- } while (wgap < (nel-1)/3);
- /* From the above, we know that either wgap == 1 < nel or */
- /* ((wgap-1)/3 < (int) ((nel-1)/3) <= (nel-1)/3 ==> wgap < nel. */
- wgap *= width; /* So this can not overflow if wnel doesn't. */
- nel *= width; /* Convert nel to 'wnel' */
- do {
- i = wgap;
- do {
- j = i;
- do {
- register char *a;
- register char *b;
- j -= wgap;
- a = j + ((char *)base);
- b = a + wgap;
- if ( (*comp)(a, b) <= 0 ) {
- break;
- }
- k = width;
- do {
- tmp = *a;
- *a++ = *b;
- *b++ = tmp;
- } while ( --k );
- } while (j >= wgap);
- i += width;
- } while (i < nel);
- wgap = (wgap - width)/3;
- } while (wgap);
- }
- }
- /* ---------- original snippets version below ---------- */
- #if 0
- /*
- ** ssort() -- Fast, small, qsort()-compatible Shell sort
- **
- ** by Ray Gardner, public domain 5/90
- */
- #include <stddef.h>
- void ssort (void *base,
- size_t nel,
- size_t width,
- int (*comp)(const void *, const void *))
- {
- size_t wnel, gap, wgap, i, j, k;
- char *a, *b, tmp;
- wnel = width * nel;
- for (gap = 0; ++gap < nel;)
- gap *= 3;
- while ( gap /= 3 )
- {
- wgap = width * gap;
- for (i = wgap; i < wnel; i += width)
- {
- for (j = i - wgap; ;j -= wgap)
- {
- a = j + (char *)base;
- b = a + wgap;
- if ( (*comp)(a, b) <= 0 )
- break;
- k = width;
- do
- {
- tmp = *a;
- *a++ = *b;
- *b++ = tmp;
- } while ( --k );
- if (j < wgap)
- break;
- }
- }
- }
- }
- #endif
- #endif
- /**********************************************************************/
- /* Multibyte and wchar stuff follows. */
- #ifdef __UCLIBC_HAS_WCHAR__
- #include <locale.h>
- #include <wchar.h>
- /* TODO: clean up the following... */
- #if WCHAR_MAX > 0xffffUL
- #define UTF_8_MAX_LEN 6
- #else
- #define UTF_8_MAX_LEN 3
- #endif
- #ifdef __UCLIBC_HAS_LOCALE__
- #define ENCODING (__global_locale.encoding)
- #warning implement __CTYPE_HAS_UTF_8_LOCALES!
- #define __CTYPE_HAS_UTF_8_LOCALES
- #else
- #define ENCODING (__ctype_encoding_7_bit)
- #undef __CTYPE_HAS_8_BIT_LOCALES
- #undef __CTYPE_HAS_UTF_8_LOCALES
- #undef L__wchar_utf8sntowcs
- #undef L__wchar_wcsntoutf8s
- #endif
- #endif
- /**********************************************************************/
- #ifdef L__stdlib_mb_cur_max
- size_t _stdlib_mb_cur_max(void)
- {
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- return __global_locale.mb_cur_max;
- #else
- #ifdef __CTYPE_HAS_8_BIT_LOCALES
- #warning need to change this when/if transliteration is implemented
- #endif
- return 1;
- #endif
- }
- #endif
- /**********************************************************************/
- #ifdef L_mblen
- int mblen(register const char *s, size_t n)
- {
- static mbstate_t state;
- size_t r;
- if (!s) {
- state.mask = 0;
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- return ENCODING == __ctype_encoding_utf8;
- #else
- return 0;
- #endif
- }
- if ((r = mbrlen(s, n, &state)) == (size_t) -2) {
- /* TODO: Should we set an error state? */
- state.wc = 0xffffU; /* Make sure we're in an error state. */
- return (size_t) -1; /* TODO: Change error code above? */
- }
- return r;
- }
- #endif
- /**********************************************************************/
- #ifdef L_mbtowc
- int mbtowc(wchar_t *__restrict pwc, register const char *__restrict s, size_t n)
- {
- static mbstate_t state;
- size_t r;
- if (!s) {
- state.mask = 0;
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- return ENCODING == __ctype_encoding_utf8;
- #else
- return 0;
- #endif
- }
- if ((r = mbrtowc(pwc, s, n, &state)) == (size_t) -2) {
- /* TODO: Should we set an error state? */
- state.wc = 0xffffU; /* Make sure we're in an error state. */
- return (size_t) -1; /* TODO: Change error code above? */
- }
- return r;
- }
- #endif
- /**********************************************************************/
- #ifdef L_wctomb
- /* Note: We completely ignore state in all currently supported conversions. */
- int wctomb(register char *__restrict s, wchar_t swc)
- {
- return (!s)
- ?
- #ifdef __CTYPE_HAS_UTF_8_LOCALES
- (ENCODING == __ctype_encoding_utf8)
- #else
- 0 /* Encoding is stateless. */
- #endif
- : ((ssize_t) wcrtomb(s, swc, NULL));
- }
- #endif
- /**********************************************************************/
- #ifdef L_mbstowcs
- size_t mbstowcs(wchar_t * __restrict pwcs, const char * __restrict s, size_t n)
- {
- mbstate_t state;
- state.mask = 0; /* Always start in initial shift state. */
- return mbsrtowcs(pwcs, &s, n, &state);
- }
- #endif
- /**********************************************************************/
- #ifdef L_wcstombs
- /* Note: We completely ignore state in all currently supported conversions. */
- size_t wcstombs(char * __restrict s, const wchar_t * __restrict pwcs, size_t n)
- {
- return wcsrtombs(s, &pwcs, n, NULL);
- }
- #endif
- /**********************************************************************/
|