-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_ultow.c
56 lines (41 loc) · 1.3 KB
/
_ultow.c
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
_ultow.c
Abstract:
Implementation of the Microsoft C function.
Converts an integer to a string.
Author:
Kilian Kegel
--*/
#include <stdio.h>
#include <limits.h>
extern int swprintf(wchar_t* pszBuffer, size_t dwCount, const wchar_t* pszFormat, ...);
/**
Synopsis
#include <stdlib.h>
wchar_t* _ultow(long value, wchar_t* str, int base);
Description
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/itoa-itow?view=msvc-160
Parameters
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/itoa-itow?view=msvc-160#parameters
Returns
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/itoa-itow?view=msvc-160#return-value
**/
wchar_t* _ultow(long value, wchar_t* str, int base)
{
wchar_t format[16] = { L"%l`000b" };
wchar_t* p = { L"%u" };
if (base != 10)
{
format[5] = '0' + base % 10;
format[4] = '0' + (base /= 10) % 10;
format[3] = '0' + (base /= 10) % 10;
p = &format[0];
}
swprintf(str, INT_MAX, p, value);
return str;
}