⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 util.h

📁 嵌入式linux(arm9)的平台下
💻 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 + -