mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
13 lines
468 B
C
13 lines
468 B
C
#pragma once
|
|
|
|
|
|
#define PAD_ZERO 1 // 0填充
|
|
#define LEFT 2 // 靠左对齐
|
|
#define RIGHT 4 // 靠右对齐
|
|
#define PLUS 8 // 在正数前面显示加号
|
|
#define SPACE 16
|
|
#define SPECIAL 32 // 在八进制数前面显示 '0o',在十六进制数前面显示 '0x' 或 '0X'
|
|
#define SMALL 64 // 十进制以上数字显示小写字母
|
|
#define SIGN 128 // 显示符号位
|
|
|
|
#define is_digit(c) ((c) >= '0' && (c) <= '9') // 用来判断是否是数字的宏
|