JSONGETARRAYSTART

JSONGETARRAYSTART(p,n) checks whether the next character, ignoring whitespace, in a piece of JSON text is an opening bracket [. This function returns a size_t 1 value that is equal to the number of bytes read.

If the number of available bytes n is greater than zero, JSONGETARRAYSTART(p,n) attempts to read an opening bracket [ from the buffer.

Read syntax diagramSkip visual syntax diagram
>>-JSONGETARRAYSTART(p,n)--------------------------------------><

p
A pointer that specifies the address of a buffer to be read.
n
A size_t value that specifies the number of available bytes in the buffer.