fdeca06eb5da53ec370b83d03de2d1f149d75302
[platform/upstream/groff.git] / src / libs / libgroff / itoa.c
1 /* Copyright (C) 1989-2014  Free Software Foundation, Inc.
2      Written by James Clark (jjc@jclark.com)
3
4 This file is part of groff.
5
6 groff is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 groff is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #define INT_DIGITS 19           /* enough for 64 bit integer */
20 #define UINT_DIGITS 20
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 char *i_to_a(int i)
27 {
28   /* Room for INT_DIGITS digits, - and '\0' */
29   static char buf[INT_DIGITS + 2];
30   char *p = buf + INT_DIGITS + 1;       /* points to terminating '\0' */
31   if (i >= 0) {
32     do {
33       *--p = '0' + (i % 10);
34       i /= 10;
35     } while (i != 0);
36     return p;
37   }
38   else {                        /* i < 0 */
39     do {
40       *--p = '0' - (i % 10);
41       i /= 10;
42     } while (i != 0);
43     *--p = '-';
44   }
45   return p;
46 }
47
48 char *ui_to_a(unsigned int i)
49 {
50   /* Room for UINT_DIGITS digits and '\0' */
51   static char buf[UINT_DIGITS + 1];
52   char *p = buf + UINT_DIGITS;  /* points to terminating '\0' */
53   do {
54     *--p = '0' + (i % 10);
55     i /= 10;
56   } while (i != 0);
57   return p;
58 }
59
60 #ifdef __cplusplus
61 }
62 #endif