TOC PREV NEXT INDEX

strlen, strcmp

Synopsis

strlen( str )
strcmp( str1 , str2 )

Returns the length of str , where str is any string value.


Returns a value that indicates the result comparing str1 and str2 , where str1, str2 are any string values:

-- Returns 0 if the strings are equivalent.
-- Returns a nonzero value f the strings are not equivalent.


TOC PREV NEXT INDEX