diff options
| author | 2023-01-16 04:25:52 +0100 | |
|---|---|---|
| committer | 2023-01-16 04:25:52 +0100 | |
| commit | d886885b0ec2506fa2caf0986a3d0e496fea91c2 (patch) | |
| tree | 58bc4bcd1963ea885abd60a65bf87a2685526714 /src/oplist.c | |
| parent | 47a7fbe438ee7350a2b151e007f07043ef596775 (diff) | |
| download | libplist-d886885b0ec2506fa2caf0986a3d0e496fea91c2.tar.gz libplist-d886885b0ec2506fa2caf0986a3d0e496fea91c2.tar.bz2 | |
Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()
This properly supports getting and setting signed or unsigned integer values.
Also, a new helper function plist_int_val_is_negative() was added to determine if
a given #PLIST_INT node has a negative value or not.
The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for
backwards compatibility.
This commit also adds int vs. uint support to the C++ interface, and the python
bindings in a hopefully useful way.
Diffstat (limited to 'src/oplist.c')
| -rw-r--r-- | src/oplist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/oplist.c b/src/oplist.c index 122440f..8936cce 100644 --- a/src/oplist.c +++ b/src/oplist.c | |||
| @@ -146,7 +146,7 @@ static int node_to_openstep(node_t* node, bytearray_t **outbuf, uint32_t depth, | |||
| 146 | 146 | ||
| 147 | switch (node_data->type) | 147 | switch (node_data->type) |
| 148 | { | 148 | { |
| 149 | case PLIST_UINT: | 149 | case PLIST_INT: |
| 150 | val = (char*)malloc(64); | 150 | val = (char*)malloc(64); |
| 151 | if (node_data->length == 16) { | 151 | if (node_data->length == 16) { |
| 152 | val_len = snprintf(val, 64, "%"PRIu64, node_data->intval); | 152 | val_len = snprintf(val, 64, "%"PRIu64, node_data->intval); |
| @@ -393,7 +393,7 @@ static int node_estimate_size(node_t *node, uint64_t *size, uint32_t depth, int | |||
| 393 | *size += data->length; | 393 | *size += data->length; |
| 394 | *size += 2; | 394 | *size += 2; |
| 395 | break; | 395 | break; |
| 396 | case PLIST_UINT: | 396 | case PLIST_INT: |
| 397 | if (data->length == 16) { | 397 | if (data->length == 16) { |
| 398 | *size += num_digits_u(data->intval); | 398 | *size += num_digits_u(data->intval); |
| 399 | } else { | 399 | } else { |
