Length of character string
[Classification]
Standard library
[Syntax]
#include <string.h>
size_t __far strlen(const char __near *s);
size_t __far _COM_strlen_f(const char __far *s);
[Return value]
Returns the number of characters existing before the null character (\0) indicating termination.
[Description]
This function obtains the length of the character string indicated by s.