EFUN: strlen

SYNTAX:
int strlen( str );
  string str;

DESCRIPTION:
Strlen gives the number of characters in the string 'str'.

RETURN VALUE:
The number of characters in 'str' is returned.

SEE ALSO:
extract
sizeof

EXAMPLE:
int i;

i = strlen( "Holy Mission" );
// i is now 12.
