summaryrefslogtreecommitdiffstats
path: root/test/plist_cmp.c
AgeCommit message (Collapse)AuthorFilesLines
2023-04-19Add plist_read_from_file() to interface, update plist_from_memory()Gravatar Nikias Bassen1-44/+2
plist_read_from_file() is a convenience function that will open a given file, checks its size, allocates a buffer large enough to hold the full contents, and reads from file to fill the buffer. Then, it calls plist_from_memory() to convert the data to plist format. A (breaking) change had to be made so that plist_from_memory() will also return the parsed format in its 4th argument (if non-NULL).
2023-02-06libcnary: Updated typedefs of node_t and node_list_t to contain pointerGravatar Nikias Bassen1-2/+2
This makes the code more readable. Obviously all the code that uses it is also updated.
2023-01-08Add support for OpenStep plist formatGravatar Nikias Bassen1-13/+2
2021-12-23test: Work around JSON parser limitation expecting to have a 0-terminated ↵Gravatar Nikias Bassen1-0/+3
string as input
2021-12-23Add support for JSON formatGravatar Nikias Bassen1-0/+4
2020-11-24Improve code readability by not using else after returnGravatar Rosen Penev1-3/+1
[clang-tidy] Found with readability-else-after-return Signed-off-by: Rosen Penev <rosenp@gmail.com>
2011-05-27Make libplist glib freeGravatar Nikias Bassen1-3/+3
2010-01-21Fix some warningsGravatar Jonathan Beck1-6/+1
2009-11-10Remove deprecated functions from API.Gravatar Jonathan Beck1-0/+17
2009-10-28Format sources to ANSI style using AStyle (astyle --style=ansi).Gravatar Jonathan Beck1-98/+102
2009-10-28Fix build for MSVC9.Gravatar Jonathan Beck1-0/+4
2009-02-15Add more regression test and fix Integer and Real type handling.Gravatar Jonathan Beck1-0/+138