Null-Terminated List Reference#

Datatypes#

struct sized_buffer#

Sized buffer.

A very important data structure that is used pervasively in the conversion between JSON strings and C structs, http request/response body

Public Members

char *start#

the buffer’s start

size_t size#

the buffer’s size in bytes

typedef void **ntl_t#

Null-terminated list helper type.

NTL_T(t) t **#

Identification macro for null-terminated lists.

A macro meant to facillitate the identification of null-terminated lists.

Methods#