Is there a C function or a simple C library to convert XML to JSON?For example, I would like the function to be able to convert the following:\[code\]<?xml version="1.0" encoding="UTF-8"?><reqTransDetails> <token>6xPVIl83hgyhtwZ/y0azu9MwMCQVSIVj/qM=</token> <ordering>desc</ordering> <status>A</status> <blockSize>999</blockSize> <blockNo>0</blockNo></reqTransDetails>\[/code\]To: \[code\]{ "reqTransDetails": { "token": "6xPVIl83hgyhtwZ/y0azu9MwMCQVSIVj/qM=", "ordering": "desc", "status": "A", "blockSize": "999", "blockNo": "0" }}\[/code\]Thank you for your help.