Crossware

Table of Contents        Previous topic       Next topic       

C COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->strlen()

Summary

#include <string.h>
    
size_t strlen(const char* string)Measure length of string

Parameter
    
stringString to be measured


Description

This function counts the number of characters in string up to but excluding the null terminator.


Return Value

The number of characters counted in the string.