删除了一些信息的打印

This commit is contained in:
fslongjin
2022-01-28 22:45:05 +08:00
parent 98e62e1e19
commit 49eaf6ce95
5 changed files with 36 additions and 38 deletions

View File

@ -92,7 +92,7 @@ static int vsprintf(char *buf, const char *fmt, va_list args);
* @param precision 精度
* @param flags 标志位
*/
static char* write_num(char *str, long long num, int base, int field_width, int precision, int flags);
static char* write_num(char *str, ull num, int base, int field_width, int precision, int flags);
static char *write_float_point_num(char *str, double num, int field_width, int precision, int flags);