search for: parse_uint16_t

Displaying 3 results from an estimated 3 matches for "parse_uint16_t".

Did you mean: parse_int16_t
2020 Mar 23
6
[PATCH nbdkit 0/3] msys2 support for review
I pushed a few of the msys2 patches upstream. I changed the way that $(SHARED_LDFLAGS) works so it's more to my liking, and the others were pushed unchanged. Three patches remain which I'm posting on the mailing list for proper review. Rich.
2020 Mar 23
0
[PATCH nbdkit 1/3] include: Function indirection for PE DLL
...uint8_t *r) +{ + return _nbdkit_functions.parse_uint8_t (what, str, r); +} +static int nbdkit_parse_int16_t (const char *what, const char *str, + int16_t *r) +{ + return _nbdkit_functions.parse_int16_t (what, str, r); +} +static int nbdkit_parse_uint16_t (const char *what, const char *str, + uint16_t *r) +{ + return _nbdkit_functions.parse_uint16_t (what, str, r); +} +static int nbdkit_parse_int32_t (const char *what, const char *str, + int32_t *r) +{ + return _nbdkit_functions.parse...
2020 Mar 23
0
[PATCH nbdkit 2/3] server: Inject API functions for Windows
...kit_parse_bool; + functions->parse_int = nbdkit_parse_int; + functions->parse_unsigned = nbdkit_parse_unsigned; + functions->parse_int8_t = nbdkit_parse_int8_t; + functions->parse_uint8_t = nbdkit_parse_uint8_t; + functions->parse_int16_t = nbdkit_parse_int16_t; + functions->parse_uint16_t = nbdkit_parse_uint16_t; + functions->parse_int32_t = nbdkit_parse_int32_t; + functions->parse_uint32_t = nbdkit_parse_uint32_t; + functions->parse_int64_t = nbdkit_parse_int64_t; + functions->parse_uint64_t = nbdkit_parse_uint64_t; + functions->read_password = nbdkit_read_passw...