Short¶
An xsd:short is a signed 16-bit integer.
Values range from -32768 to 32767 inclusive.
The lexical form is the same as xsd:long, the only difference is that the value space of xsd:short is smaller. See Long for details.
-
ExessResult
exess_read_short
(int16_t *out, const char *str)¶ Read an xsd:short 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 astatus
code.
-
ExessResult
exess_write_short
(int16_t value, size_t buf_size, char *buf)¶ Write a canonical xsd:short 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, andstatus
ExessStatus.EXESS_SUCCESS
, orExessStatus.EXESS_NO_SPACE
if the buffer is too small.
-
EXESS_MAX_SHORT_LENGTH
¶ The maximum length of a canonical xsd:short string, 6.