📄 string.h
字号:
/* * include/bios/string.h * * Copyright (C) 1998 Russell King */#ifndef BIOS_STRING_H#define BIOS_STRING_H#ifndef NULL#define NULL ((void *)0)#endiftypedef unsigned long size_t;extern void *memcpy(void *to, const void *from, size_t size);extern void *memzero(void *ptr, int size);extern void *memset(void *ptr, int byte, size_t size);extern int memeq(const void *m1, const void *m2, size_t size);extern int strnlen(const char *p, size_t size);extern char *strcat(char *, const char *);extern char *strcpy(char *, const char *);extern long atol(const char *str);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -