📄 kmisc.h
字号:
/* * Replacements for standard c library functions used in wiimote.c * * Gabriel De La Calzada */ #ifndef KMISC_H_#define KMISC_H_// Basic string compare function. Zero is returned if i and j are equal,// otherwise a non-zero value is returnedint kstrcmp(char *i, char *j);// Place character c into first n characters of svoid kmemset(char *s, char c, int n);// copy n characters from ct to svoid kmemcpy(char *s, char *ct, int n);// Copies string s to string tvoid kstrcpy(char *t, char *s);#endif /*KMISC_H_*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -