xtow.c

来自「不错的东西 请查看 WINCE OS」· C语言 代码 · 共 56 行

C
56
字号
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
#include <corecrt.h>

static void __cdecl xtow(unsigned long val, wchar_t *buf, unsigned radix, int is_neg) {
	wchar_t *p;		/* pointer to traverse string */
	wchar_t *firstdig; 	/* pointer to first digit */
	wchar_t temp;		/* temp char */
	unsigned digval;	/* value of digit */
	p = buf;
	if (is_neg) {
		*p++ = '-';
		val = (unsigned long)(-(long)val);
	}
	firstdig = p;		/* save pointer to first digit */
	do {
		digval = (unsigned) (val % radix);
		val /= radix;	/* get next digit */
		/* convert to ascii and store */
		if (digval > 9)
			*p++ = (wchar_t)(digval - 10 + 'a');	/* a letter */
		else
			*p++ = (wchar_t)(digval + '0');		/* a digit */
	} while (val > 0);
	/* We now have the digit of the number in the buffer, but in reverse
	   order.  Thus we reverse them now. */
	*p-- = '\0';		/* terminate string; p points to last digit */
	do {
		temp = *p;
		*p = *firstdig;
		*firstdig = temp;	/* swap *p and *firstdig */
	} while (++firstdig < --p); /* repeat until halfway */
}

wchar_t * __cdecl _itow(int val, wchar_t *buf, int radix) {
	xtow((unsigned long)val, buf, radix, (radix == 10 && val < 0));
	return buf;
}

wchar_t * __cdecl _ltow(long val, wchar_t *buf, int radix) {
	xtow((unsigned long)val, buf, radix, (radix == 10 && val < 0));
	return buf;
}

wchar_t * __cdecl _ultow(unsigned long val, wchar_t *buf, int radix) {
	xtow(val, buf, radix, 0);
	return buf;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?