This is just to outline the directory structure for APR, in case anybody wants
to write some code.


apache-apr/docs			Basic design documents for apr.
apache-apr/pthreads		Apache hybrid process/thread model that will
				some day soon (hopefully) use apr.
apache-apr/apr			This is the base directory for APR itself.
apache-apr/apr/include		The include files programs will need to
				use apr.
apache-apr/apr/file_io		The base for the file/io functions.
apache-apr/apr/file_io/UNIX     The UNIX code for APR.
apache-apr/apr/file_io/windows  The Windows code for APR.
apache-apr/apr/file_io/XXX	Any other directories for file_io code.

apache-apr/apr/network_io		The base for the network/io functions.
apache-apr/apr/network_io/UNIX          The UNIX code for APR.
apache-apr/apr/network_io/windows       The Windows code for APR.
apache-apr/apr/network_io/XXX	         Any other directories for network_io
					  code.

And so on for the rest of the major breakdowns for the library.

Any include files that are internal to APR routines, should go in their OS's
directory.