Import upstream version 1.28
[debian/tar] / gnu / anytostr.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* anytostr.c -- convert integers to printable strings
4
5    Copyright (C) 2001, 2006, 2008-2014 Free Software Foundation, Inc.
6
7    This program 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    This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* Written by Paul Eggert */
21
22 /* Tell gcc not to warn about the (i < 0) test, below.  */
23 #if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
24 # pragma GCC diagnostic ignored "-Wtype-limits"
25 #elif defined __clang__
26 # pragma clang diagnostic ignored "-Wtautological-compare"
27 #endif
28
29 #include <config.h>
30
31 #include "inttostr.h"
32
33 /* Convert I to a printable string in BUF, which must be at least
34    INT_BUFSIZE_BOUND (INTTYPE) bytes long.  Return the address of the
35    printable string, which need not start at BUF.  */
36
37 char * __attribute_warn_unused_result__
38 anytostr (inttype i, char *buf)
39 {
40   char *p = buf + INT_STRLEN_BOUND (inttype);
41   *p = 0;
42
43   if (i < 0)
44     {
45       do
46         *--p = '0' - i % 10;
47       while ((i /= 10) != 0);
48
49       *--p = '-';
50     }
51   else
52     {
53       do
54         *--p = '0' + i % 10;
55       while ((i /= 10) != 0);
56     }
57
58   return p;
59 }