Skip to content

Files

Latest commit

Jan 6, 2019
1cc2182 · Jan 6, 2019

History

History
This branch is 1 commit ahead of, 57761 commits behind master.

libxmlrpc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 6, 2001
Dec 30, 2004
Jan 6, 2019
May 29, 2007
Sep 19, 2007
Sep 6, 2001
Jul 5, 2002
Apr 27, 2004
Nov 4, 2016
Jul 19, 2016
Jul 5, 2002
Sep 6, 2001
Jan 6, 2019
Oct 25, 2001
May 28, 2007
Sep 6, 2001
Nov 23, 2014
Oct 30, 2001
May 28, 2007
Sep 6, 2001
Oct 28, 2014
Jul 5, 2002
Dec 30, 2004
Dec 18, 2005
Sep 6, 2001
Sep 6, 2001
Jul 5, 2002
Jul 5, 2008
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..