⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 string.inc

📁 vxzxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz
💻 INC
字号:
#ifndef _INCLUDE_FILE_STRING_INC_
_INCLUDE_FILE_STRING_INC_ equ

include stddef.inc
_strlen proto cdecl string:dword
_strrev proto cdecl string:dword
_strcpy proto cdecl strDestination:dword,strSource:dword
_strcat proto cdecl strDestination:dword,strSource:dword
_strchr proto cdecl string:dword,c:dword
_strcmp proto cdecl string1:dword,string2:dword
_memset proto cdecl dest:dword,c:dword,count:size_t
_memchr proto cdecl buf:dword,c:dword,count:size_t
_memcmp proto cdecl buf1:dword,buf2:dword,count:size_t
_memcpy proto cdecl dest:dword,src:dword,count:size_t
_memmove proto cdecl dest:dword,src:dword,count:size_t
_strcspn proto cdecl string:dword,strCharSet:dword
_strncat proto cdecl strDest:dword,strSource:dword,count:size_t
_strncmp proto cdecl string1:dword,string2:dword,count:size_t
_strncpy proto cdecl strDest:dword,strSource:dword,count:size_t
_strpbrk proto cdecl string:dword,strCharSet:dword
_strrchr proto cdecl string:dword,c:dword
_strspn proto cdecl string:dword,strCharSet:dword
_strstr proto cdecl string:dword,strCharSet:dword
_strtok proto cdecl strToken:dword,strDelimit:dword

strlen equ _strlen
strrev equ _strrev
strcpy equ _strcpy
strcat equ _strcat
strchr equ _strchr
strcmp equ _strcmp
memset equ _memset
memchr equ _memchr
memcmp equ _memcmp
memcpy equ _memcpy
memmove equ _memmove
strcspn equ _strcspn
strncat equ _strncat
strncmp equ _strncmp
strncpy equ _strncpy
strpbrk equ _strpbrk
strrchr equ _strrchr
strspn equ _strspn
strstr equ _strstr
strtok equ _strtok

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -