📄 itoa.cc
字号:
/* Copyright (C) 1990 Free Software Foundation written by Doug Lea (dl@rocky.oswego.edu)This file is part of GNU CC.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY. No author or distributoraccepts responsibility to anyone for the consequences of using itor for whether it serves any particular purpose or works at all,unless he says so in writing. Refer to the GNU CC General PublicLicense for full details.Everyone is granted permission to copy, modify and redistributeGNU CC, but only under the conditions described in theGNU CC General Public License. A copy of this license issupposed to have been given to you along with GNU CC so youcan know your rights and responsibilities. It should be in afile named COPYING. Among other things, the copyright noticeand this notice must be preserved on all copies. */#ifdef __GNUG__#pragma implementation#endif#include <builtin.h>#include <AllocRing.h>extern AllocRing _libgxx_fmtq;char* itoa(long x, int base, int width){ int wrksiz; if (base == 10) wrksiz = width + 13; else wrksiz = (BITS(long) + 1) / lg(base) + 1 + width + 1; char* fmtbase = (char *) _libgxx_fmtq.alloc(wrksiz); char* e = fmtbase + wrksiz - 1; char* s = e; *--s = 0; char sgn = 0; if (x == 0) *--s = '0'; else { unsigned int z; if (x < 0) { sgn = '-'; z = -x; } else z = x; while (z != 0) { char ch = char(z % base); z = z / base; if (ch >= 10) ch += 'a' - 10; else ch += '0'; *--s = ch; } } if (sgn) *--s = sgn; int w = e - s - 1; while (w++ < width) *--s = ' '; return s;}char* itoa(unsigned long x, int base, int width){ int wrksiz; if (base == 10) wrksiz = width + 13; else wrksiz = (BITS(long) + 1) / lg(base) + 1 + width + 1; char* fmtbase = (char *) _libgxx_fmtq.alloc(wrksiz); char* e = fmtbase + wrksiz - 1; char* s = e; *--s = 0; if (x == 0) *--s = '0'; else { unsigned int b = base; while (x != 0) { char ch = char(x % b); x = x / b; if (ch >= 10) ch += 'a' - 10; else ch += '0'; *--s = ch; } } int w = e - s - 1; while (w++ < width) *--s = ' '; return s;}#ifdef __GNUG__#ifndef VMSchar* itoa(long long x, int base, int width){ int wrksiz; if (base == 10) wrksiz = width + 23; else wrksiz = (BITS(long long) + 1) / lg(base) + 1 + width + 1; char* fmtbase = (char *) _libgxx_fmtq.alloc(wrksiz); char* e = fmtbase + wrksiz - 1; char* s = e; *--s = 0; char sgn = 0; if (x == 0) *--s = '0'; else { long long z; if (x < 0) { sgn = '-'; z = -x; } else z = x; while (z != 0) { char ch = char(z % base); z = z / base; if (ch >= 10) ch += 'a' - 10; else ch += '0'; *--s = ch; } } if (sgn) *--s = sgn; int w = e - s - 1; while (w++ < width) *--s = ' '; return s;}char* itoa(unsigned long long x, int base, int width){ int wrksiz; if (base == 10) wrksiz = width + 23; else wrksiz = (BITS(long long) + 1) / lg(base) + 1 + width + 1; char* fmtbase = (char *) _libgxx_fmtq.alloc(wrksiz); char* e = fmtbase + wrksiz - 1; char* s = e; *--s = 0; if (x == 0) *--s = '0'; else { unsigned int b = base; while (x != 0) { char ch = char(x % b); x = x / b; if (ch >= 10) ch += 'a' - 10; else ch += '0'; *--s = ch; } } int w = e - s - 1; while (w++ < width) *--s = ' '; return s;}#endif#endifchar* hex(long i, int width){ return itoa(i, 16, width);}char* oct(long i, int width){ return itoa(i, 8, width);}char* dec(long i, int width){ return itoa(i, 10, width);}char* hex(unsigned long i, int width){ return itoa(i, 16, width);}char* oct(unsigned long i, int width){ return itoa(i, 8, width);}char* dec(unsigned long i, int width){ return itoa(i, 10, width);}// The following functions used to be inline in builtin.h, but// the definitions there clashed with those in iostream/stream.C.// Since people aren't supposed to be using these functions in// any case, there is no reason to make them inline.char* hex(int x, int width = 0) { return hex(long(x), width); }char* hex(short x, int width = 0) { return hex(long(x), width); }char* hex(unsigned int x, int width = 0) { return hex((unsigned long)(x), width); }char* hex(unsigned short x, int width = 0) { return hex((unsigned long)(x), width); }char* oct(int x, int width = 0) { return oct(long(x), width); }char* oct(short x, int width = 0) { return oct(long(x), width); }char* oct(unsigned int x, int width = 0) { return oct((unsigned long)(x), width); }char* oct(unsigned short x, int width = 0) { return oct((unsigned long)(x), width); }char* dec(int x, int width = 0) { return dec(long(x), width); }char* dec(short x, int width = 0) { return dec(long(x), width); }char* dec(unsigned int x, int width = 0) { return dec((unsigned long)(x), width); }char* dec(unsigned short x, int width = 0) { return dec((unsigned long)(x), width); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -