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