12e9398dadd0d383a46e444cacc67dd8dc080e26
[platform/upstream/bash.git] / lib / sh / itos.c
1 /* itos.c -- Convert integer to string. */
2
3 /* Copyright (C) 1998-2002 Free Software Foundation, Inc.
4
5    This file is part of GNU Bash, the Bourne Again SHell.
6
7    Bash is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11
12    Bash is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with Bash.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #if defined (HAVE_UNISTD_H)
26 #  include <unistd.h>
27 #endif
28
29 #include <bashansi.h>
30 #include "shell.h"
31
32 char *
33 inttostr (i, buf, len)
34      intmax_t i;
35      char *buf;
36      size_t len;
37 {
38   return (fmtumax (i, 10, buf, len, 0));
39 }
40
41 /* Integer to string conversion.  This conses the string; the
42    caller should free it. */
43 char *
44 itos (i)
45      intmax_t i;
46 {
47   char *p, lbuf[INT_STRLEN_BOUND(intmax_t) + 1];
48
49   p = fmtumax (i, 10, lbuf, sizeof(lbuf), 0);
50   return (savestring (p));
51 }
52
53 char *
54 uinttostr (i, buf, len)
55      uintmax_t i;
56      char *buf;
57      size_t len;
58 {
59   return (fmtumax (i, 10, buf, len, FL_UNSIGNED));
60 }
61
62 /* Integer to string conversion.  This conses the string; the
63    caller should free it. */
64 char *
65 uitos (i)
66      uintmax_t i;
67 {
68   char *p, lbuf[INT_STRLEN_BOUND(uintmax_t) + 1];
69
70   p = fmtumax (i, 10, lbuf, sizeof(lbuf), FL_UNSIGNED);
71   return (savestring (p));
72 }