mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
27 lines
322 B
Plaintext
27 lines
322 B
Plaintext
NAME
|
|
strlen - number of characters in a string
|
|
|
|
SYNOPSIS
|
|
strlen(x)
|
|
|
|
TYPES
|
|
x string
|
|
|
|
return integer
|
|
|
|
DESCRIPTION
|
|
strlen(x) returns the number of characters in x
|
|
|
|
EXAMPLE
|
|
> print strlen(""), strlen("abc"), strlen("a b\tc\\d")
|
|
0 3 7
|
|
|
|
LIMITS
|
|
none
|
|
|
|
LIBRARY
|
|
none
|
|
|
|
SEE ALSO
|
|
XXX - fill in
|