uClibc_uintmaxtostr.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Copyright (C) 2003 Manuel Novoa III
  2. *
  3. * This library is free software; you can redistribute it and/or
  4. * modify it under the terms of the GNU Lesser General Public
  5. * License as published by the Free Software Foundation; either
  6. * version 2.1 of the License, or (at your option) any later version.
  7. *
  8. * The GNU C Library is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * Lesser General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Lesser General Public
  14. * License along with the GNU C Library; see the file COPYING.LIB. If
  15. * not, see <http://www.gnu.org/licenses/>.
  16. */
  17. /* ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION!
  18. *
  19. * This code is currently under development. Also, I plan to port
  20. * it to elks which is a 16-bit environment with a fairly limited
  21. * compiler. Therefore, please refrain from modifying this code
  22. * and, instead, pass any bug-fixes, etc. to me. Thanks. Manuel
  23. *
  24. * ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION! */
  25. #ifndef _UINTMAXTOSTR_H
  26. #define _UINTMAXTOSTR_H 1
  27. #include <features.h>
  28. #include <limits.h>
  29. #include <stdint.h>
  30. #if INTMAX_MAX <= 2147483647L
  31. #define __UIM_BUFLEN 12 /* 10 digits + 1 nul + 1 sign */
  32. #elif INTMAX_MAX <= 9223372036854775807LL
  33. #define __UIM_BUFLEN 22 /* 20 digits + 1 nul + 1 sign */
  34. #else
  35. #error unknown number of digits for intmax_t!
  36. #endif
  37. #ifdef LLONG_MAX /* --------------- */
  38. #if LLONG_MAX <= 2147483647L
  39. #define __UIM_BUFLEN_LLONG 12 /* 10 digits + 1 nul + 1 sign */
  40. #elif LLONG_MAX <= 9223372036854775807LL
  41. #define __UIM_BUFLEN_LLONG 22 /* 20 digits + 1 nul + 1 sign */
  42. #else
  43. #error unknown number of digits for long long!
  44. #endif
  45. #endif /* ULLONG_MAX ----------------------------- */
  46. #if LONG_MAX <= 2147483647L
  47. #define __UIM_BUFLEN_LONG 12 /* 10 digits + 1 nul + 1 sign */
  48. #elif LONG_MAX <= 9223372036854775807LL
  49. #define __UIM_BUFLEN_LONG 22 /* 20 digits + 1 nul + 1 sign */
  50. #else
  51. #error unknown number of digits for long!
  52. #endif
  53. #if INT_MAX <= 32767
  54. #define __UIM_BUFLEN_INT 7 /* 10 digits + 1 nul + 1 sign */
  55. #elif INT_MAX <= 2147483647L
  56. #define __UIM_BUFLEN_INT 12 /* 10 digits + 1 nul + 1 sign */
  57. #else
  58. #error unknown number of digits for int!
  59. #endif
  60. typedef enum {
  61. __UIM_DECIMAL = 0,
  62. __UIM_GROUP = ',', /* Base 10 locale-dependent grouping. */
  63. __UIM_LOWER = 'a' - 10,
  64. __UIM_UPPER = 'A' - 10,
  65. } __UIM_CASE;
  66. /* Convert the int val to a string in base abs(base). val is treated as
  67. * an unsigned ??? int type if base > 0, and signed if base < 0. This
  68. * is an internal function with _no_ error checking done unless assert()s
  69. * are enabled.
  70. *
  71. * Note: bufend is a pointer to the END of the buffer passed.
  72. * Call like this:
  73. * char buf[SIZE], *p;
  74. * p = _xltostr(buf + sizeof(buf) - 1, {unsigned int}, 10, __UIM_DECIMAL)
  75. * p = _xltostr(buf + sizeof(buf) - 1, {int}, -10, __UIM_DECIMAL)
  76. *
  77. * WARNING: If base > 10, case _must_be_ either __UIM_LOWER or __UIM_UPPER
  78. * for lower and upper case alphas respectively.
  79. * WARNING: If val is really a signed type, make sure base is negative!
  80. * Otherwise, you could overflow your buffer.
  81. */
  82. extern char *_uintmaxtostr(char * __restrict bufend, uintmax_t uval,
  83. int base, __UIM_CASE alphacase) attribute_hidden;
  84. /* TODO -- make this either a (possibly inline) function? */
  85. #ifndef __BCC__
  86. #define _int10tostr(bufend, intval) \
  87. _uintmaxtostr((bufend), (intval), -10, __UIM_DECIMAL)
  88. #else /* bcc doesn't do prototypes, we need to explicitly cast */
  89. #define _int10tostr(bufend, intval) \
  90. _uintmaxtostr((bufend), (uintmax_t)(intval), -10, __UIM_DECIMAL)
  91. #endif
  92. #define __BUFLEN_INT10TOSTR __UIM_BUFLEN_INT
  93. #endif /* _UINTMAXTOSTR_H */