PxStrlen()
Get string length.
- APPLIES TO
-
8.2.0
- SYNOPSIS
-
PxSize_t PxStrlen(char const *s);
- ARGUMENTS
|
- RETURN VALUES
-
-
length of string s
-
- DESCRIPTION
-
PxStrlen returns the length of the null terminated string starting at s. The terminating null is not counted.
- USAGE
-
#include "pxdef.h" PxSize_t len = PxStrlen(str);