23 lines
332 B
Markdown
23 lines
332 B
Markdown
# PL_strlen
|
|
|
|
Returns the length of a specified string (not including the trailing
|
|
`'\0'`)
|
|
|
|
## Syntax
|
|
|
|
```{code}
|
|
PRUint32 PL_strlen(const char *str);
|
|
```
|
|
|
|
## Parameter
|
|
|
|
The function has these parameter:
|
|
|
|
`str`
|
|
|
|
: Size in bytes of item to be allocated.
|
|
|
|
## Returns
|
|
|
|
If successful, the function returns length of the specified string.
|