📄 util.h
字号:
#ifndef UTIL_H
#define UTIL_H
#define STATUS_DOT_INTERVAL 100000 //bytes read per status dot
#define STATUS_LINE_INTERVAL 45 //status dots per line
void stringCopy(const char* source, char* dest);
void memCopy(const void* src, void* dest, int bytes);
void memFill(void* dest, int bytes, char value);
void memDisp(void* src, int bytes);
int stringToInt(const char* string);
int charToInt(const char ch);
void updateProgress(int bytesRead);
void showProgress(int show);
int stringLength(const char* string);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -