Skip to content

Files

Latest commit

May 10, 2015
e570bb4 · May 10, 2015

History

History
This branch is 45319 commits behind php/php-src:master.

libxmlrpc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 6, 2001
Dec 30, 2004
Jan 10, 2015
May 29, 2007
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Dec 30, 2004
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
Jan 10, 2015
May 10, 2015
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..