📄 mstrnlen.c
字号:
/*
** Safe string length. Returns the length of a string that
** is possibly not NUL-terminated. 'size' is the length of the
** buffer in which this string is stored.
*/
#include <string.h>
#include <stddef.h>
size_t
my_strnlen( char const *string, int size )
{
register size_t length;
for( length = 0; length < size; length += 1 )
if( *string++ == '\0' )
break;
return length;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -