index
:
libplist
master
time64
Library to handle Apple Property List format files in binary or XML
ms
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
plist.c
Age
Commit message (
Expand
)
Author
Files
Lines
2024-05-13
Revert "Change API around #PLIST_DATA to use uint8_t instead of char arrays"
Nikias Bassen
1
-5
/
+5
2024-04-18
Add PLIST_DICT convenience functions for different queries/operations
Nikias Bassen
1
-0
/
+245
2024-04-14
Change API around #PLIST_DATA to use uint8_t instead of char arrays
Nikias Bassen
1
-5
/
+6
2024-02-05
Add a libplist_version() function to the interface
Nikias Bassen
1
-0
/
+8
2023-12-12
Prevent OOB access in plist_from_memory
Nikias Bassen
1
-2
/
+14
2023-08-30
Prevent adding NULL items to array/dictionary nodes
Nikias Bassen
1
-0
/
+12
2023-06-15
Plug memory leak in plist_write_to_stream()
Nikias Bassen
1
-0
/
+1
2023-05-21
Add explicit casts and fix return type mismatches
Nikias Bassen
1
-43
/
+47
2023-05-20
Add an explicit PLIST_FORMAT_NONE value
Nikias Bassen
1
-2
/
+2
2023-05-13
Move PLIST_API to the headers
Nikias Bassen
1
-83
/
+83
2023-05-05
Silence compiler warning on 32bit systems
Nikias Bassen
1
-1
/
+1
2023-04-19
Remove deprecated plist_dict_insert_item()
Nikias Bassen
1
-5
/
+0
2023-04-19
Add plist_read_from_file() to interface, update plist_from_memory()
Nikias Bassen
1
-1
/
+51
2023-04-16
Add new output-only formats and Define constants for the different plist formats
Nikias Bassen
1
-0
/
+92
2023-02-07
Add function to interface to allow enabling/disabling error/debug output for ...
Nikias Bassen
1
-0
/
+13
2023-02-06
libcnary: Updated typedefs of node_t and node_list_t to contain pointer
Nikias Bassen
1
-41
/
+41
2023-02-05
Fix plist_sort() by swapping the nodes in the tree instead of their data
Nikias Bassen
1
-29
/
+33
2023-02-03
Add new plist_sort() function
Nikias Bassen
1
-0
/
+61
2023-01-31
bplist: Fix handling of PLIST_NULL node type
Nikias Bassen
1
-0
/
+1
2023-01-16
Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()
Nikias Bassen
1
-8
/
+60
2023-01-08
Add support for OpenStep plist format
Nikias Bassen
1
-5
/
+49
2022-09-05
Fix up warning with `-Wbad-function-cast`
Dave MacLachlan
1
-1
/
+4
2022-04-06
Skip whitespace to properly detect format in plist_from_memory()
Nikias Bassen
1
-3
/
+8
2021-12-23
Add support for JSON format
Nikias Bassen
1
-0
/
+6
2021-12-22
Add a return value to plist_to_* and plist_from_* functions
Nikias Bassen
1
-7
/
+11
2021-12-19
Add support for PLIST_NULL type
Nikias Bassen
1
-0
/
+9
2021-12-19
Add new plist_mem_free() function
Nikias Bassen
1
-0
/
+8
2021-09-13
Check availability of constructor attribute and use it on Windows in favor of...
Nikias Bassen
1
-16
/
+23
2021-09-11
windows: Make thread_once static and remove const qualifiers from thread_once...
Nikias Bassen
1
-3
/
+3
2021-06-22
[clang-tidy] Remove casts to the same type
Rosen Penev
1
-1
/
+1
2021-06-22
[clang-tidy] Avoid global non-const variables
Rosen Penev
1
-2
/
+2
2021-06-22
[clang-tidy] Remove pointless const
Rosen Penev
1
-1
/
+1
2020-11-24
Improve code readability by not using else after return
Rosen Penev
1
-38
/
+40
2020-06-08
Remove whitespace errors from all files
Martin Szulecki
1
-1
/
+1
2020-06-03
Remove pointless return in void functions
Rosen Penev
1
-10
/
+0
2020-05-26
Make plist_bool_val_is_true() return 0 instead of -1 if node is NULL or not a...
Nikias Bassen
1
-1
/
+1
2020-05-25
Return NULL from plist_copy() if passed a NULL pointer
Xiao Deng
1
-1
/
+1
2020-05-21
Fix symbol mismatch between public header and interface (plist_bool_val_is_true)
Nikias Bassen
1
-1
/
+1
2020-05-11
Suppress compiler warning about memmem on Linux
Nikias Bassen
1
-0
/
+1
2020-05-11
Add plist_*_val_compare, plist_*_val_contains, etc. for the respective node t...
Nikias Bassen
1
-0
/
+231
2019-11-07
Add plist_get_data_ptr() and plist_get_string_ptr() to the interface
Nikias Bassen
1
-0
/
+25
2019-08-13
plist: Remove unnecessary parameter from plist_copy_node()
Xiao Deng
1
-14
/
+6
2019-08-09
Make sure to copy hash table entries properly when cloning array/dict nodes
Nikias Bassen
1
-18
/
+22
2019-05-20
plist_set_key_val(): prevent setting a key value that already exists in a PLI...
Nikias Bassen
1
-0
/
+5
2019-05-20
Add plist_dict_item_get_key() to allow retrieving the key node for a given it...
Nikias Bassen
1
-0
/
+11
2019-05-19
Add plist_array_item_remove() to allow removing an array's child node without...
Nikias Bassen
1
-0
/
+15
2019-05-19
plist_array_get_item_index(): return UINT_MAX instead of 0 when node can't be...
Nikias Bassen
1
-1
/
+1
2019-05-19
Add index lookup table for large PLIST_ARRAY nodes
Nikias Bassen
1
-11
/
+69
2019-05-16
Ignore invalid input in plist_get_*_val() to prevent unnecessary assertions
Nikias Bassen
1
-19
/
+50
2019-01-21
plist: Add iterator for #PLIST_ARRAY nodes
Nikias Bassen
1
-4
/
+34
[next]