3ea12f89a1d1a44af2dbbe9ec3f546dd4d34359a
[util-vserver.git] / util-vserver / lib / fmt.h
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
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.
8 //  
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.
13 //  
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.
17
18
19 #ifndef H_VSERVER_DJINNI_SRC_FMT_H
20 #define H_VSERVER_DJINNI_SRC_FMT_H
21
22 #include <stdlib.h>
23 #include <stdint.h>
24
25 #ifndef FMT_PREFIX
26 #  define FMT_PREFIX    fmt_
27 #endif
28
29 #define FMT_P__(X,Y)    X ## Y
30 #define FMT_P_(X,Y)     FMT_P__(X,Y)
31 #define FMT_P(X)        FMT_P_(FMT_PREFIX, X)
32
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 size_t  FMT_P(xuint64)(char *ptr, uint_least64_t val);
39 size_t  FMT_P( xint64)(char *ptr,  int_least64_t val);
40
41 size_t  FMT_P(xuint32)(char *ptr, uint_least32_t val);
42 size_t  FMT_P( xint32)(char *ptr,  int_least32_t val);
43   
44 size_t  FMT_P(uint64_base)(char *ptr, uint_least64_t val, char base);
45 size_t  FMT_P( int64_base)(char *ptr,  int_least64_t val, char base);
46
47 size_t  FMT_P(uint32_base)(char *ptr, uint_least32_t val, char base);
48 size_t  FMT_P( int32_base)(char *ptr,  int_least32_t val, char base);
49
50 size_t  FMT_P(ulong_base)(char *ptr, unsigned long val, char base);
51 size_t  FMT_P( long_base)(char *ptr,          long val, char base);
52 size_t  FMT_P(xulong)    (char *ptr, unsigned long val);
53 size_t  FMT_P( xlong)    (char *ptr,          long val);
54
55 size_t  FMT_P(uint_base)(char *ptr, unsigned int val, char base);
56 size_t  FMT_P( int_base)(char *ptr,          int val, char base);
57 size_t  FMT_P(xuint)    (char *ptr, unsigned int val, char base);
58 size_t  FMT_P( xint)    (char *ptr,          int val, char base);
59
60 inline static size_t
61 FMT_P(uint64)(char *ptr, uint_least64_t val)
62 {
63   return FMT_P(uint64_base)(ptr, val, 10);
64 }
65
66 inline static size_t
67 FMT_P(int64)(char *ptr, uint_least64_t val)
68 {
69   return FMT_P(int64_base)(ptr, val, 10);
70 }
71
72 inline static size_t
73 FMT_P(uint32)(char *ptr, uint_least32_t val)
74 {
75   return FMT_P(uint32_base)(ptr, val, 10);
76 }
77
78 inline static size_t
79 FMT_P(int32)(char *ptr, uint_least32_t val)
80 {
81   return FMT_P(int32_base)(ptr, val, 10);
82 }
83
84 inline static size_t
85 FMT_P(ulong)(char *ptr, unsigned long val)
86 {
87   return FMT_P(ulong_base)(ptr, val, 10);
88 }
89
90 inline static size_t
91 FMT_P(long)(char *ptr, long val)
92 {
93   return FMT_P(long_base)(ptr, val, 10);
94 }
95
96
97 inline static size_t
98 FMT_P(uint)(char *ptr, unsigned int val)
99 {
100   return FMT_P(uint_base)(ptr, val, 10);
101 }
102
103 inline static size_t
104 FMT_P(int)(char *ptr, int val)
105 {
106   return FMT_P(int_base)(ptr, val, 10);
107 }
108
109
110 #ifdef __cplusplus
111 }
112 #endif
113
114 #undef ALIASFUNC
115 #undef STRINGIFY
116 #undef STRINGIFY_
117 #undef FMT_P
118 #undef FMT_P_
119 #undef FMT_P__
120
121 #endif  //  H_VSERVER_DJINNI_SRC_FMT_H