📄 string.h
字号:
/* We don't want strings.h stuff being user by user stuff by accident *///#include <linux/types.h> /* for size_t *///#include <linux/stddef.h> /* for NULL */#include "types.h"extern char * ___strtok;extern char * strpbrk(const char *,const char *);extern char * strtok(char *,const char *);extern char * strsep(char **,const char *);extern size_t strspn(const char *,const char *);/* * Include machine specific inline routines *///#include <asm/string.h>#ifndef __HAVE_ARCH_STRCPYextern char * strcpy(char *,const char *);#endif#ifndef __HAVE_ARCH_STRNCPYextern char * strncpy(char *,const char *, size_t);#endif#ifndef __HAVE_ARCH_STRCATextern char * strcat(char *, const char *);#endif#ifndef __HAVE_ARCH_STRNCATextern char * strncat(char *, const char *, size_t);#endif#ifndef __HAVE_ARCH_STRCMPextern int strcmp(const char *,const char *);#endif#ifndef __HAVE_ARCH_STRNCMPextern int strncmp(const char *,const char *,size_t);#endif#ifndef __HAVE_ARCH_STRNICMPextern int strnicmp(const char *, const char *, size_t);#endif#ifndef __HAVE_ARCH_STRCHRextern char * strchr(const char *,int);#endif#ifndef __HAVE_ARCH_STRRCHRextern char * strrchr(const char *,int);#endif#ifndef __HAVE_ARCH_STRSTRextern char * strstr(const char *,const char *);#endif#ifndef __HAVE_ARCH_STRLENextern size_t strlen(const char *);#endif#ifndef __HAVE_ARCH_STRNLENextern size_t strnlen(const char *,size_t);#endif#ifndef __HAVE_ARCH_MEMSETextern void * memset(void *,int,size_t);#endif#ifndef __HAVE_ARCH_MEMCPYextern void * memcpy(void *,const void *,size_t);#endif#ifndef __HAVE_ARCH_MEMMOVEextern void * memmove(void *,const void *,size_t);#endif#ifndef __HAVE_ARCH_MEMSCANextern void * memscan(void *,int,size_t);#endif#ifndef __HAVE_ARCH_MEMCMPextern int memcmp(const void *,const void *,size_t);#endif#ifndef __HAVE_ARCH_MEMCHRextern void * memchr(const void *,int,size_t);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -