📄 utils.h
字号:
#ifndef __UTILS_H#define __UTILS_H#include "typDef.h"int strncmp(const char *cs, const char *ct, INT32U count);void * memcpy(void *dest, const void *src, INT32U count);void * memset(void *s, int c, INT32U count);void * memmove(void *dest, const void *src, INT32U count);INT16U ntohs(INT16U s);INT32U ntohl(INT32U l);INT16U htons(INT16U s);INT32U htonl(INT32U l);INT32U strtoul(char *s, char **endptr, int radix);#endif /* __UTILS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -