SilverScreen Solid Modeler

strlen

strlen

Previous topic Next topic  

strlen

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

size_t strlen( char *s )

 

char *s;        /* a string */

 

 

 




Synopsis

#include "string.h"

 

The strlen function determines the length of the string s , not including the null-terminator.

 

 

Parameters

s is a null-terminated string.

 

 

Return Value

strlen returns the length of the string.