PxStrlen()

Get string length.

APPLIES TO

1.0.0

SYNOPSIS
PxSize_t PxStrlen(char const *s);
ARGUMENTS
s

String which length is counted

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);