Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 05-Dec-2019 | - | ||||
README.md | H A D | 05-Dec-2019 | 670 | 22 | 14 | |
base64.c | H A D | 05-Dec-2019 | 3.8 KiB | 192 | 140 | |
base64.h | H A D | 05-Dec-2019 | 784 | 38 | 17 | |
encodings.c | H A D | 05-Dec-2019 | 3.1 KiB | 111 | 65 | |
encodings.h | H A D | 05-Dec-2019 | 1.7 KiB | 47 | 9 | |
queue.c | H A D | 05-Dec-2019 | 18.3 KiB | 978 | 374 | |
queue.h | H A D | 05-Dec-2019 | 2.3 KiB | 90 | 59 | |
simplestring.c | H A D | 05-Dec-2019 | 6.9 KiB | 265 | 71 | |
simplestring.h | H A D | 05-Dec-2019 | 2.2 KiB | 77 | 22 | |
system_methods.c | H A D | 05-Dec-2019 | 13.5 KiB | 373 | 278 | |
system_methods_private.h | H A D | 05-Dec-2019 | 2.6 KiB | 88 | 7 | |
xml_element.c | H A D | 05-Dec-2019 | 23.9 KiB | 764 | 392 | |
xml_element.h | H A D | 05-Dec-2019 | 5.9 KiB | 203 | 63 | |
xml_to_dandarpc.c | H A D | 05-Dec-2019 | 10.6 KiB | 316 | 253 | |
xml_to_dandarpc.h | H A D | 05-Dec-2019 | 1.6 KiB | 45 | 9 | |
xml_to_soap.c | H A D | 05-Dec-2019 | 21.7 KiB | 665 | 475 | |
xml_to_soap.h | H A D | 05-Dec-2019 | 1.6 KiB | 45 | 8 | |
xml_to_xmlrpc.c | H A D | 05-Dec-2019 | 14.6 KiB | 408 | 318 | |
xml_to_xmlrpc.h | H A D | 05-Dec-2019 | 1.6 KiB | 46 | 9 | |
xmlrpc.c | H A D | 05-Dec-2019 | 78.4 KiB | 3,006 | 1,027 | |
xmlrpc.h | H A D | 05-Dec-2019 | 17.6 KiB | 453 | 200 | |
xmlrpc_introspection.c | H A D | 05-Dec-2019 | 20.5 KiB | 599 | 329 | |
xmlrpc_introspection.h | H A D | 05-Dec-2019 | 2.9 KiB | 99 | 11 | |
xmlrpc_introspection_private.h | H A D | 05-Dec-2019 | 3.5 KiB | 103 | 23 | |
xmlrpc_private.h | H A D | 05-Dec-2019 | 5.6 KiB | 178 | 43 |
README.md
1# libxmlrpc 2 3This is a fork of the [xmlrpc-epi library](http://xmlrpc-epi.sourceforge.net/) 4written by Dan Libby. 5 6## Original coding conventions 7 8Organization of this directory is moving towards this approach: 9 10* `<module>.h` -- public API and data types 11* `<module>_private.h` -- protected API and data types 12* `<module>.c` -- implementation and private API / types 13 14The rules are: 15 16* `.c` files may include `*_private.h`. 17* `.h` files may not include `*_private.h` 18 19This allows us to have a nicely encapsulated C api with opaque data types and 20private functions that are nonetheless shared between source files without 21redundant extern declarations.. 22