Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 05-Dec-2019 | - | ||||
README | H A D | 05-Dec-2019 | 521 | 18 | 9 | |
acinclude.m4 | H A D | 05-Dec-2019 | 552 | 33 | 23 | |
base64.c | H A D | 05-Dec-2019 | 3.8 KiB | 197 | 143 | |
base64.h | H A D | 05-Dec-2019 | 785 | 39 | 17 | |
encodings.c | H A D | 05-Dec-2019 | 3.5 KiB | 128 | 79 | |
encodings.h | H A D | 05-Dec-2019 | 1.7 KiB | 47 | 9 | |
queue.c | H A D | 05-Dec-2019 | 18.3 KiB | 983 | 377 | |
queue.h | H A D | 05-Dec-2019 | 2.3 KiB | 90 | 59 | |
simplestring.c | H A D | 05-Dec-2019 | 7 KiB | 266 | 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 | 376 | 278 | |
system_methods_private.h | H A D | 05-Dec-2019 | 2.7 KiB | 92 | 7 | |
xml_element.c | H A D | 05-Dec-2019 | 23.9 KiB | 768 | 393 | |
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 | 320 | 256 | |
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.8 KiB | 671 | 479 | |
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.7 KiB | 414 | 322 | |
xml_to_xmlrpc.h | H A D | 05-Dec-2019 | 1.6 KiB | 46 | 9 | |
xmlrpc.c | H A D | 05-Dec-2019 | 78.5 KiB | 3,014 | 1,033 | |
xmlrpc.h | H A D | 05-Dec-2019 | 17.6 KiB | 455 | 199 | |
xmlrpc.m4 | H A D | 05-Dec-2019 | 213 | 13 | 9 | |
xmlrpc_introspection.c | H A D | 05-Dec-2019 | 20.5 KiB | 605 | 332 | |
xmlrpc_introspection.h | H A D | 05-Dec-2019 | 2.9 KiB | 102 | 11 | |
xmlrpc_introspection_private.h | H A D | 05-Dec-2019 | 3.5 KiB | 107 | 23 | |
xmlrpc_private.h | H A D | 05-Dec-2019 | 5.6 KiB | 179 | 43 | |
xmlrpc_win32.h | H A D | 05-Dec-2019 | 338 | 17 | 14 |
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