📄 util.cpp
字号:
/************************************************************************* Copyright (C) 2002 - 2007 Wei Qin See file COPYING for more information. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.*************************************************************************/#include <unistd.h>#include <termios.h>#include <fcntl.h>#include <cstdlib>#include <cstdio>#include "bittypes.h"uint64_t ato_uint64(char *input){ char *p = input; uint64_t val = 0; while (*p!=0) { val = val*10+(*p-'0'); p++; } return val;}void dump_int64(uint64_t value, FILE *stream){ char buffer[32]; char *p = buffer + sizeof(buffer) - 1; if (value==0) { fputs("0", stream); } else { *p = 0; while (value > 0) { *--p = '0' + (value % 10); value /= 10; } fputs(p, stream); }}void dump_int64_smart(uint64_t value, FILE *stream){ uint64_t val = value; char *c = ""; if(value > 1000000000) { val = value / 1000000000; c = "G"; } else if(value > 1000000) { val = value / 1000000; c = "M"; } else if(value > 1000) { val = value / 1000; c = "K"; } dump_int64(val, stream); fputs(c, stream);}/* init terminal so that we can grab keys */static struct termios oldtty;static int old_fd0_flags;void term_exit(void){ tcsetattr (0, TCSANOW, &oldtty); fcntl(0, F_SETFL, old_fd0_flags);}void term_init(void){ struct termios tty; tcgetattr (0, &tty); oldtty = tty; old_fd0_flags = fcntl(0, F_GETFL); tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP |INLCR|IGNCR|ICRNL|IXON); tty.c_oflag |= OPOST; tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN); tty.c_lflag &= ~ISIG; tty.c_cflag &= ~(CSIZE|PARENB); tty.c_cflag |= CS8; tty.c_cc[VMIN] = 1; tty.c_cc[VTIME] = 0; tcsetattr (0, TCSANOW, &tty); atexit(term_exit); fcntl(0, F_SETFL, O_NONBLOCK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -