2 * Copyright (c) 2013 Kevin Wolf <kwolf@redhat.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 void* memcpy(void *dest
, const void *src
, int n
)
37 static void print_char(char c
)
42 static void print_str(char *s
)
49 static void print_num(uint64_t value
, int base
)
51 char digits
[] = "0123456789abcdef";
53 int i
= sizeof(buf
) - 2;
56 buf
[i
--] = digits
[value
% base
];
60 print_str(&buf
[i
+ 1]);
63 void printf(const char *fmt
, ...)
117 val
= va_arg(ap
, unsigned int);
120 val
= va_arg(ap
, unsigned long);
123 val
= va_arg(ap
, unsigned long long);
127 if (alt_form
&& base
== 16) {
131 print_num(val
, base
);
135 str
= va_arg(ap
, char*);