Name Date Size #Lines LOC

..05-Dec-2019-

READMEH A D05-Dec-2019521 189

acinclude.m4H A D05-Dec-2019552 3323

base64.cH A D05-Dec-20193.8 KiB193139

base64.hH A D05-Dec-2019785 3917

encodings.cH A D05-Dec-20193.5 KiB12778

encodings.hH A D05-Dec-20191.7 KiB479

queue.cH A D05-Dec-201918.3 KiB983377

queue.hH A D05-Dec-20192.3 KiB9059

simplestring.cH A D05-Dec-20196.9 KiB26570

simplestring.hH A D05-Dec-20192.3 KiB7722

system_methods.cH A D05-Dec-201913.5 KiB376278

system_methods_private.hH A D05-Dec-20192.7 KiB927

xml_element.cH A D05-Dec-201923.9 KiB768393

xml_element.hH A D05-Dec-20196 KiB20363

xml_to_dandarpc.cH A D05-Dec-201910.7 KiB320256

xml_to_dandarpc.hH A D05-Dec-20191.6 KiB459

xml_to_soap.cH A D05-Dec-201921.9 KiB671479

xml_to_soap.hH A D05-Dec-20191.6 KiB458

xml_to_xmlrpc.cH A D05-Dec-201914.7 KiB415323

xml_to_xmlrpc.hH A D05-Dec-20191.6 KiB469

xmlrpc.cH A D05-Dec-201978.8 KiB3,0141,033

xmlrpc.hH A D05-Dec-201917.6 KiB455199

xmlrpc.m4H A D05-Dec-2019213 139

xmlrpc_introspection.cH A D05-Dec-201920.6 KiB605332

xmlrpc_introspection.hH A D05-Dec-20192.9 KiB10211

xmlrpc_introspection_private.hH A D05-Dec-20193.5 KiB10723

xmlrpc_private.hH A D05-Dec-20195.6 KiB17943

xmlrpc_win32.hH A D05-Dec-2019312 1614

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
14
15
16
17
18