Name Date Size #Lines LOC

..05-Dec-2019-

README.mdH A D05-Dec-2019670 2214

base64.cH A D05-Dec-20193.8 KiB192140

base64.hH A D05-Dec-2019784 3817

encodings.cH A D05-Dec-20193.1 KiB11165

encodings.hH A D05-Dec-20191.7 KiB479

queue.cH A D05-Dec-201918.3 KiB978374

queue.hH A D05-Dec-20192.3 KiB9059

simplestring.cH A D05-Dec-20196.9 KiB26571

simplestring.hH A D05-Dec-20192.2 KiB7722

system_methods.cH A D05-Dec-201913.5 KiB373278

system_methods_private.hH A D05-Dec-20192.6 KiB887

xml_element.cH A D05-Dec-201923.9 KiB764392

xml_element.hH A D05-Dec-20195.9 KiB20363

xml_to_dandarpc.cH A D05-Dec-201910.6 KiB316253

xml_to_dandarpc.hH A D05-Dec-20191.6 KiB459

xml_to_soap.cH A D05-Dec-201921.7 KiB665475

xml_to_soap.hH A D05-Dec-20191.6 KiB458

xml_to_xmlrpc.cH A D05-Dec-201914.6 KiB408318

xml_to_xmlrpc.hH A D05-Dec-20191.6 KiB469

xmlrpc.cH A D05-Dec-201978.4 KiB3,0061,027

xmlrpc.hH A D05-Dec-201917.6 KiB453200

xmlrpc_introspection.cH A D05-Dec-201920.5 KiB599329

xmlrpc_introspection.hH A D05-Dec-20192.9 KiB9911

xmlrpc_introspection_private.hH A D05-Dec-20193.5 KiB10323

xmlrpc_private.hH A D05-Dec-20195.6 KiB17843

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