?? string.h
字號(hào):
#ifndef __ASM_I386_STRING_H#define __ASM_I386_STRING_H/* * We don't do inline string functions, since the * optimised inline asm versions are not small. */#undef __HAVE_ARCH_STRRCHRextern char * strrchr(const char * s, int c);#undef __HAVE_ARCH_STRCHRextern char * strchr(const char * s, int c);#undef __HAVE_ARCH_MEMCPYextern void * memcpy(void *, const void *, __kernel_size_t);#undef __HAVE_ARCH_MEMMOVEextern void * memmove(void *, const void *, __kernel_size_t);#undef __HAVE_ARCH_MEMCHRextern void * memchr(const void *, int, __kernel_size_t);#undef __HAVE_ARCH_MEMSETextern void * memset(void *, int, __kernel_size_t);#undef __HAVE_ARCH_MEMZEROextern void memzero(void *ptr, __kernel_size_t n);#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -