FolusWen c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
..
README c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
acinclude.m4 c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
base64.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
base64.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
encodings.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
encodings.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
queue.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
queue.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
simplestring.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
simplestring.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
system_methods.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
system_methods_private.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_element.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_element.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_to_dandarpc.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_to_dandarpc.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_to_soap.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_to_soap.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_to_xmlrpc.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xml_to_xmlrpc.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc.m4 c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc_introspection.c c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc_introspection.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc_introspection_private.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren
xmlrpc_private.h c2d3f4474f [Improve][GPL][PHP / lighttpd] vor 3 Jahren

README

organization of this directory is moving towards this approach:

.h -- public API and data types
_private.h -- protected API and data types
.c -- implementation and private API / types

The rules are:
.c files may include *_private.h.
.h files may not include *_private.h

This allows us to have a nicely encapsulated C api with opaque data types and private functions
that are nonetheless shared between source files without redundant extern declarations..