📄 string.h
字号:
#ifndef __TL_STRING_H
#define __TL_STRING_H
#ifdef __cplusplus
extern "C"
{
#endif /* #ifdef __cplusplus */
#include <_size_t.h>
#include <_null.h>
int memcmp(const void *memptr1, const void *memptr2, size_t count);
void *memcpy(void *dst_ptr, const void *src_ptr, size_t count);
void *memset(void *dst, int val, size_t count);
void *memmove(void *dst_ptr, const void *src_ptr, size_t count);
void *memsetw(void *dst, int val, size_t count);
void movedata(unsigned src_seg, unsigned src_off,
unsigned dst_seg, unsigned dst_off, size_t count);
size_t strlen(const char *str);
#ifdef __cplusplus
}
#endif /* #ifdef __cplusplus */
#endif /* #ifndef __TL_STRING_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -