-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathitoa_ljust.h
32 lines (26 loc) · 878 Bytes
/
itoa_ljust.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef ITOA_LJUST_H
#define ITOA_LJUST_H
//=== itoa_ljust.h - Fast integer to ascii conversion --*- C++ -*-//
//
// Fast and simple integer to ASCII conversion:
//
// - 32 and 64-bit integers
// - signed and unsigned
// - user supplied buffer must be large enough for all decimal digits
// in value plus minus sign if negative
// - left-justified
// - NUL terminated
// - return value is pointer to NUL terminator
//
// Copyright (c) 2016 Arturo Martin-de-Nicolas
// https://github.com/amdn/itoa_ljust/
//===----------------------------------------------------------------------===//
#include <stdint.h>
namespace itoa_ljust {
char* itoa(uint32_t u, char* buffer);
char* itoa( int32_t i, char* buffer);
char* itoa(uint64_t u, char* buffer);
char* itoa( int64_t i, char* buffer);
}
#endif // ITOA_LJUST_H