Unsigned Int

An xsd:unsignedInt is an unsigned 32-bit integer.

Values range from 0 to 4294967295 inclusive.

The lexical form is the same as xsd:unsignedLong, the only difference is that the value space of xsd:unsignedInt is smaller. See Unsigned Long for details.

ExessResult exess_read_uint(uint32_t *out, const char *str)

Read an xsd:unsignedInt string after any leading whitespace.

Parameters
  • out – Set to the parsed value, or zero on error.

  • str – String input.

Returns

The count of characters read, and a status code.

ExessResult exess_write_uint(uint32_t value, size_t buf_size, char *buf)

Write a canonical xsd:unsignedInt string.

Parameters
  • value – Value to write.

  • buf_size – The size of buf in bytes.

  • buf – Output buffer, or null to only measure.

Returns

The count of characters in the output, and status ExessStatus.EXESS_SUCCESS, or ExessStatus.EXESS_NO_SPACE if the buffer is too small.

EXESS_MAX_UINT_LENGTH

The maximum length of a canonical xsd:unsignedInt string, 10.