README 521 B

1234567891011121314151617
  1. organization of this directory is moving towards this approach:
  2. <module>.h -- public API and data types
  3. <module>_private.h -- protected API and data types
  4. <module>.c -- implementation and private API / types
  5. The rules are:
  6. .c files may include *_private.h.
  7. .h files may not include *_private.h
  8. This allows us to have a nicely encapsulated C api with opaque data types and private functions
  9. that are nonetheless shared between source files without redundant extern declarations..