Name Date Size #Lines LOC

..05-Dec-2019-

READMEH A D05-Dec-2019516 139

acinclude.m4H A D05-Dec-2019552 3323

base64.cH A D05-Dec-20193.8 KiB197143

base64.hH A D05-Dec-2019784 3817

encodings.cH A D05-Dec-20193.3 KiB11871

encodings.hH A D05-Dec-20191.7 KiB479

queue.cH A D05-Dec-201918.3 KiB980375

queue.hH A D05-Dec-20192.3 KiB9059

simplestring.cH A D05-Dec-20197 KiB26772

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 KiB768393

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.8 KiB667476

xml_to_soap.hH A D05-Dec-20191.6 KiB458

xml_to_xmlrpc.cH A D05-Dec-201914.6 KiB410319

xml_to_xmlrpc.hH A D05-Dec-20191.6 KiB469

xmlrpc.cH A D05-Dec-201978.4 KiB3,0091,028

xmlrpc.hH A D05-Dec-201917.6 KiB453200

xmlrpc.m4H A D05-Dec-2019212 139

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

1organization of this directory is moving towards this approach:
2
3<module>.h               -- public API and data types
4<module>_private.h       -- protected API and data types
5<module>.c               -- implementation and private API / types
6
7The rules are:
8.c files may include *_private.h.
9.h files may not include *_private.h
10
11This allows us to have a nicely encapsulated C api with opaque data types and private functions
12that are nonetheless shared between source files without redundant extern declarations..
13