3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 * \brief Declarations for some fmt_* functions
22 #ifndef H_ENSC_FMT_FMT_H
23 #define H_ENSC_FMT_FMT_H
29 # define FMT_PREFIX fmt_
32 #define FMT_P__(X,Y) X ## Y
33 #define FMT_P_(X,Y) FMT_P__(X,Y)
34 #define FMT_P(X) FMT_P_(FMT_PREFIX, X)
41 size_t FMT_P(xuint64)(char *ptr, uint_least64_t val);
42 size_t FMT_P( xint64)(char *ptr, int_least64_t val);
44 size_t FMT_P(xuint32)(char *ptr, uint_least32_t val);
45 size_t FMT_P( xint32)(char *ptr, int_least32_t val);
47 size_t FMT_P(uint64_base)(char *ptr, uint_least64_t val, char base);
48 size_t FMT_P( int64_base)(char *ptr, int_least64_t val, char base);
50 size_t FMT_P(uint32_base)(char *ptr, uint_least32_t val, char base);
51 size_t FMT_P( int32_base)(char *ptr, int_least32_t val, char base);
53 size_t FMT_P(ulong_base)(char *ptr, unsigned long val, char base);
54 size_t FMT_P( long_base)(char *ptr, long val, char base);
55 size_t FMT_P(xulong) (char *ptr, unsigned long val);
56 size_t FMT_P( xlong) (char *ptr, long val);
58 size_t FMT_P(uint_base)(char *ptr, unsigned int val, char base);
59 size_t FMT_P( int_base)(char *ptr, int val, char base);
60 size_t FMT_P(xuint) (char *ptr, unsigned int val);
61 size_t FMT_P( xint) (char *ptr, int val);
64 size_t FMT_P(tai64n)(char *ptr, struct timeval const *now);
67 FMT_P(uint64)(char *ptr, uint_least64_t val)
69 return FMT_P(uint64_base)(ptr, val, 10);
73 FMT_P(int64)(char *ptr, uint_least64_t val)
75 return FMT_P(int64_base)(ptr, val, 10);
79 FMT_P(uint32)(char *ptr, uint_least32_t val)
81 return FMT_P(uint32_base)(ptr, val, 10);
85 FMT_P(int32)(char *ptr, uint_least32_t val)
87 return FMT_P(int32_base)(ptr, val, 10);
91 FMT_P(ulong)(char *ptr, unsigned long val)
93 return FMT_P(ulong_base)(ptr, val, 10);
97 FMT_P(long)(char *ptr, long val)
99 return FMT_P(long_base)(ptr, val, 10);
104 FMT_P(uint)(char *ptr, unsigned int val)
106 return FMT_P(uint_base)(ptr, val, 10);
110 FMT_P(int)(char *ptr, int val)
112 return FMT_P(int_base)(ptr, val, 10);
124 #endif // H_ENSC_FMT_FMT_H