php-src/ext/xmlrpc/libxmlrpc
2014-12-13 23:06:14 +01:00
..
acinclude.m4
base64.c
base64.h
encodings.c missing include for strlen proto 2014-10-13 18:43:08 +02:00
encodings.h
queue.c
queue.h
README
simplestring.c Merge branch 'pull-request/341' 2013-06-10 14:20:18 -07:00
simplestring.h
system_methods.c
system_methods_private.h
xml_element.c Removed unused variable 2008-12-17 00:30:27 +00:00
xml_element.h
xml_to_dandarpc.c
xml_to_dandarpc.h
xml_to_soap.c typo fixes - https://github.com/vlajos/misspell_fixer 2014-11-23 14:52:47 -08:00
xml_to_soap.h
xml_to_xmlrpc.c first shot remove TSRMLS_* things 2014-12-13 23:06:14 +01:00
xml_to_xmlrpc.h
xmlrpc.c Merge branch 'PHP-5.6' 2014-10-28 08:51:22 +01:00
xmlrpc.h
xmlrpc.m4
xmlrpc_introspection.c
xmlrpc_introspection.h
xmlrpc_introspection_private.h
xmlrpc_private.h
xmlrpc_win32.h

organization of this directory is moving towards this approach:

<module>.h               -- public API and data types
<module>_private.h       -- protected API and data types
<module>.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..