summaryrefslogtreecommitdiff
path: root/src/out-plutil.c
Commit message (Collapse)AuthorAgeFilesLines
* Add space before PRI* macros, some compilers do not like itNikias Bassen2023-05-131-2/+2
|
* Add new output-only formats and Define constants for the different plist formatsNikias Bassen2023-04-161-0/+465
This commit introduces constants for the different plist formats, and adds 3 new human-readable output-only formats: - PLIST_FORMAT_PRINT: the default human-readable format - PLIST_FORMAT_LIMD: "libimobiledevice" format (used in ideviceinfo) - PLIST_FORMAT_PLUTIL: plutil-style format Also, a new set of write functions has been added: - plist_write_to_string - plist_write_to_stream - plist_write_to_file Plus a simple "dump" function: - plist_print See documentation for details.