xref: /PHP-7.4/ext/xmlrpc/libxmlrpc/README.md (revision 340da471)
1# libxmlrpc
2
3This is a fork of the [xmlrpc-epi library](http://xmlrpc-epi.sourceforge.net/)
4written by Dan Libby.
5
6## Original coding conventions
7
8Organization of this directory is moving towards this approach:
9
10* `<module>.h`         -- public API and data types
11* `<module>_private.h` -- protected API and data types
12* `<module>.c`         -- implementation and private API / types
13
14The rules are:
15
16* `.c` files may include `*_private.h`.
17* `.h` files may not include `*_private.h`
18
19This allows us to have a nicely encapsulated C api with opaque data types and
20private functions that are nonetheless shared between source files without
21redundant extern declarations..
22