pkgsrc/devel/rudiments/PLIST
fhajny c5e1f7cd3a Update devel/rudiments to 0.53.
rudiments 0.53
- exposed codetreegrammar class and updated codetree class so that
  successive parses/writes can use the same grammar without having to reload
- added insert/appendXml(File) methods to xmldomnode to parse and
  insert/append xml strings or files to a node
- fixed FILE->fileno detection for solaris 11.2, which doesn't have it at all
- llabs() is detected and preferred to abs()
- added partial xml namespace support (namespaces for tags)
- added partial support for extended ascii character set to character class
- added setgroups() call before setuid() call to drop extraneous groups
- updated rudiments-config man page, slightly
- removed outdated and unused dtd class
- updated file::resolveSymbolicLink() to use
  directory::maxPathLength(filename) as a starting point
- updated directory::getCurrentDirectory() to use MAX_PATH
  as a starting point
- serialport/serialportprofile, modemserver/modemclient classes are disabled
  in the default build now
- updated intro docs

rudiments 0.52
- tweaked codetree's recursive break logic a bit
- added compiler class
- added case-insensitive methods to xmldomnode
- added methods to xmldomnode that operate on descendents (as opposed
  to just operating on direct children)
- added methods to xmldomnode for deleting, wrapping, unwrapping
- fixed dynamiclib::getError() bug on windows
- tweaked -Werror detection in configure script
- removed rpcentry class
- added file::setPermissions() methods


rudiments 0.51
- added missing inline qualifiers to dynamicarray/staticarray method
  implementations
- added test for clock_settime, datetime class uses it if other set-time
  functions aren't available, returns false and sets errno=ENOSYS if
  no set-time function is available
- directory::fpathConf now falls back to MAX_PATH code if fpathconf exists
  but there's dirfd() or anything like it
- file::createFifo returns false and sets errno=ENOSYS on platforms that
  don't support fifo's now
- file::generateKey returns -1 and sets errno=ENOSYS on VMS now
- file::createHardLink returns -1 and sets errno=ENOSYS on platforms
  don't support hard links now
- fixed missing breaks in stdio::flush
- userentry::getPassword/getRealName return NULL on VMS now
- unix sockets are faked on VMS now
- threadmutex is built and installed now whether or not threads are
  supported, but if threads are not supported, its methods are degenerate
  and return success
- filesystem::getCurrentProperties() returns false and sets errno=ENOSYS
  on VMS now
- implemented degenerate groupentry for VMS
- fixed file::getBlockCount() crash that could occur if the filesystem's
  block size was reported as 0
- tweaked copy constructors and = operators in staticarray/dynamicarray
  classes to work with older compilers
- disabled -Werror for gcc < 2.7
- filedescriptor::printf uses fprintf or fdopen/vfprintf when possible,
  in leiu of falling back to charstring::printf
- charstring::printf tries the null device before falling back
  to a scratch file
- the rate at which charstring::printf expands its buffer is now
  exponential up to 1024 bytes
- added sys::getDirectorySeparator()
- fixed trailing-slash-followed-by-quote issue when building windows
  command lines
- added --enable-enosys-notify configure option for runtime notifcations
  when methods set ENOSYS
- cleared errno before each EINTR loop
- fixed sys::sync() segfault
- fixed ssl tests
- removed intervaltimer class
- updated sys::getPhysicalPageCount/getAvailablePhysicalPageCount for Windows
- added sys::getAllocationGranularity, updated code to use it instead
  of getPageSize, in most cases
- fixed copy-constructor/=-operator bugs in dynamicarray class
- added config_vs2013.h for VS 2013
- fixed several permissions-related issues for WinNT 4
- allowShortReads/useBlockingMode are set by default for stdinput now
- added wrapper for atexit()
- changed process::getRealUser/GroupId to getUser/GroupId to match
  setUser/Groupid
- added process::setEffectiveUser/Group methods
- fixed and documented auto-resume behavior in snooze methods
- fixed detection of double-dashed command line parameters without values
- removed redundant charstring::rightPad()
- renamed charstring::padString() to charstring::pad()
- added safePrint methods that take unsigned char arguments
- fixed bytestring::findFirst() with unsigned char needle, when needle is 0
- fixed bugs in linkedlist::moveBefore/moveAfter
- fixed bugs in singlylinkedlist::removeAll()
- removed arg parameter from thread::setFunction(), added
  thread::setArgument(), and added thread::create(arg)
- changed thread::create() to thread::run()
- wrote lots of example code and updated the programming docs
- removed unused shmfile class
- fixed several LocalFree's that should have been delete[]'s
2015-09-02 12:37:09 +00:00

728 lines
38 KiB
Text

@comment $NetBSD: PLIST,v 1.16 2015/09/02 12:37:09 fhajny Exp $
bin/rudiments-config
include/rudiments/bytebuffer.h
include/rudiments/bytestring.h
include/rudiments/character.h
include/rudiments/charstring.h
include/rudiments/chat.h
include/rudiments/client.h
include/rudiments/codetree.h
include/rudiments/commandline.h
include/rudiments/compiler.h
include/rudiments/crypt.h
include/rudiments/datetime.h
include/rudiments/device.h
include/rudiments/dictionary.h
include/rudiments/directory.h
include/rudiments/dynamicarray.h
include/rudiments/dynamiclib.h
include/rudiments/environment.h
include/rudiments/error.h
include/rudiments/file.h
include/rudiments/filedescriptor.h
include/rudiments/filesystem.h
include/rudiments/groupentry.h
include/rudiments/hostentry.h
include/rudiments/inetsocketclient.h
include/rudiments/inetsocketserver.h
include/rudiments/inetsocketutil.h
include/rudiments/linkedlist.h
include/rudiments/listener.h
include/rudiments/logger.h
include/rudiments/memorymap.h
include/rudiments/memorypool.h
include/rudiments/parameterstring.h
include/rudiments/permissions.h
include/rudiments/private/bytebuffer.h
include/rudiments/private/bytebufferincludes.h
include/rudiments/private/bytestringincludes.h
include/rudiments/private/characterincludes.h
include/rudiments/private/charstring.h
include/rudiments/private/charstringincludes.h
include/rudiments/private/chat.h
include/rudiments/private/chatincludes.h
include/rudiments/private/client.h
include/rudiments/private/clientincludes.h
include/rudiments/private/codetree.h
include/rudiments/private/codetreegrammar.h
include/rudiments/private/codetreeincludes.h
include/rudiments/private/commandline.h
include/rudiments/private/commandlineincludes.h
include/rudiments/private/compiler.h
include/rudiments/private/compilerincludes.h
include/rudiments/private/config.h
include/rudiments/private/cryptincludes.h
include/rudiments/private/datetime.h
include/rudiments/private/datetimeincludes.h
include/rudiments/private/device.h
include/rudiments/private/deviceincludes.h
include/rudiments/private/dictionary.h
include/rudiments/private/dictionaryincludes.h
include/rudiments/private/dictionaryinlines.h
include/rudiments/private/dictionarynode.h
include/rudiments/private/directory.h
include/rudiments/private/directoryincludes.h
include/rudiments/private/dll.h
include/rudiments/private/dynamicarray.h
include/rudiments/private/dynamicarrayincludes.h
include/rudiments/private/dynamicarrayinlines.h
include/rudiments/private/dynamiclib.h
include/rudiments/private/dynamiclibincludes.h
include/rudiments/private/environment.h
include/rudiments/private/environmentincludes.h
include/rudiments/private/errorincludes.h
include/rudiments/private/file.h
include/rudiments/private/filedescriptor.h
include/rudiments/private/filedescriptorincludes.h
include/rudiments/private/filedestination.h
include/rudiments/private/fileincludes.h
include/rudiments/private/filesystem.h
include/rudiments/private/filesystemincludes.h
include/rudiments/private/groupentry.h
include/rudiments/private/groupentryincludes.h
include/rudiments/private/hostentry.h
include/rudiments/private/hostentryincludes.h
include/rudiments/private/inetsocketclient.h
include/rudiments/private/inetsocketclientincludes.h
include/rudiments/private/inetsocketserver.h
include/rudiments/private/inetsocketserverincludes.h
include/rudiments/private/inetsocketutil.h
include/rudiments/private/inetsocketutilincludes.h
include/rudiments/private/inttypes.h
include/rudiments/private/linkedlist.h
include/rudiments/private/linkedlistincludes.h
include/rudiments/private/linkedlistinlines.h
include/rudiments/private/linkedlistnode.h
include/rudiments/private/linkedlistutilinlines.h
include/rudiments/private/listener.h
include/rudiments/private/listenerincludes.h
include/rudiments/private/logdestination.h
include/rudiments/private/logger.h
include/rudiments/private/loggerincludes.h
include/rudiments/private/memorymap.h
include/rudiments/private/memorymapincludes.h
include/rudiments/private/memorypool.h
include/rudiments/private/memorypoolincludes.h
include/rudiments/private/new.h
include/rudiments/private/parameterstring.h
include/rudiments/private/parameterstringincludes.h
include/rudiments/private/permissions.h
include/rudiments/private/permissionsincludes.h
include/rudiments/private/process.h
include/rudiments/private/processincludes.h
include/rudiments/private/protocolentry.h
include/rudiments/private/protocolentryincludes.h
include/rudiments/private/randomnumber.h
include/rudiments/private/randomnumberincludes.h
include/rudiments/private/regularexpression.h
include/rudiments/private/regularexpressionincludes.h
include/rudiments/private/rudimentsinlines.h
include/rudiments/private/semaphoreset.h
include/rudiments/private/semaphoresetincludes.h
include/rudiments/private/server.h
include/rudiments/private/serverincludes.h
include/rudiments/private/serviceentry.h
include/rudiments/private/serviceentryincludes.h
include/rudiments/private/sharedmemory.h
include/rudiments/private/sharedmemoryincludes.h
include/rudiments/private/signalclassesincludes.h
include/rudiments/private/signalhandler.h
include/rudiments/private/signalset.h
include/rudiments/private/singlylinkedlist.h
include/rudiments/private/singlylinkedlistincludes.h
include/rudiments/private/singlylinkedlistinlines.h
include/rudiments/private/singlylinkedlistnode.h
include/rudiments/private/snooze.h
include/rudiments/private/snoozeincludes.h
include/rudiments/private/socketclient.h
include/rudiments/private/socketclientincludes.h
include/rudiments/private/socketserver.h
include/rudiments/private/socketserverincludes.h
include/rudiments/private/staticarray.h
include/rudiments/private/staticarrayinlines.h
include/rudiments/private/stderrdestination.h
include/rudiments/private/stdio.h
include/rudiments/private/stdoutdestination.h
include/rudiments/private/stringbuffer.h
include/rudiments/private/stringbufferincludes.h
include/rudiments/private/sysincludes.h
include/rudiments/private/syslogdestination.h
include/rudiments/private/thread.h
include/rudiments/private/threadincludes.h
include/rudiments/private/threadmutex.h
include/rudiments/private/threadmutexincludes.h
include/rudiments/private/unixsocketclient.h
include/rudiments/private/unixsocketclientincludes.h
include/rudiments/private/unixsocketserver.h
include/rudiments/private/unixsocketserverincludes.h
include/rudiments/private/unixsocketutil.h
include/rudiments/private/unixsocketutilincludes.h
include/rudiments/private/userentry.h
include/rudiments/private/userentryincludes.h
include/rudiments/private/winsock.h
include/rudiments/private/xmldom.h
include/rudiments/private/xmldomincludes.h
include/rudiments/private/xmldomnode.h
include/rudiments/private/xmldomnodeincludes.h
include/rudiments/private/xmlsax.h
include/rudiments/private/xmlsaxincludes.h
include/rudiments/process.h
include/rudiments/protocolentry.h
include/rudiments/randomnumber.h
include/rudiments/regularexpression.h
include/rudiments/resultcodes.h
include/rudiments/semaphoreset.h
include/rudiments/server.h
include/rudiments/serviceentry.h
include/rudiments/sharedmemory.h
include/rudiments/signalclasses.h
include/rudiments/singlylinkedlist.h
include/rudiments/snooze.h
include/rudiments/socketclient.h
include/rudiments/socketserver.h
include/rudiments/staticarray.h
include/rudiments/stdio.h
include/rudiments/stringbuffer.h
include/rudiments/sys.h
include/rudiments/thread.h
include/rudiments/threadmutex.h
include/rudiments/unixsocketclient.h
include/rudiments/unixsocketserver.h
include/rudiments/unixsocketutil.h
include/rudiments/userentry.h
include/rudiments/xmldom.h
include/rudiments/xmldomnode.h
include/rudiments/xmlsax.h
lib/librudiments.la
lib/pkgconfig/rudiments.pc
man/man1/rudiments-config.1
share/doc/rudiments/classes/html/annotated.html
share/doc/rudiments/classes/html/arrowdown.png
share/doc/rudiments/classes/html/arrowright.png
share/doc/rudiments/classes/html/bc_s.png
share/doc/rudiments/classes/html/bdwn.png
share/doc/rudiments/classes/html/bytebuffer_8h_source.html
share/doc/rudiments/classes/html/bytebufferincludes_8h_source.html
share/doc/rudiments/classes/html/bytestring_8h_source.html
share/doc/rudiments/classes/html/bytestringincludes_8h_source.html
share/doc/rudiments/classes/html/character_8h_source.html
share/doc/rudiments/classes/html/characterincludes_8h_source.html
share/doc/rudiments/classes/html/charstring_8h_source.html
share/doc/rudiments/classes/html/charstringincludes_8h_source.html
share/doc/rudiments/classes/html/chat_8h_source.html
share/doc/rudiments/classes/html/chatincludes_8h_source.html
share/doc/rudiments/classes/html/classbool-members.html
share/doc/rudiments/classes/html/classbool.html
share/doc/rudiments/classes/html/classbytebuffer-members.html
share/doc/rudiments/classes/html/classbytebuffer.html
share/doc/rudiments/classes/html/classbytestring-members.html
share/doc/rudiments/classes/html/classbytestring.html
share/doc/rudiments/classes/html/classcharacter-members.html
share/doc/rudiments/classes/html/classcharacter.html
share/doc/rudiments/classes/html/classcharstring-members.html
share/doc/rudiments/classes/html/classcharstring.html
share/doc/rudiments/classes/html/classchat-members.html
share/doc/rudiments/classes/html/classchat.html
share/doc/rudiments/classes/html/classclient-members.html
share/doc/rudiments/classes/html/classclient.html
share/doc/rudiments/classes/html/classcodetree-members.html
share/doc/rudiments/classes/html/classcodetree.html
share/doc/rudiments/classes/html/classcodetreegrammar-members.html
share/doc/rudiments/classes/html/classcodetreegrammar.html
share/doc/rudiments/classes/html/classcommandline-members.html
share/doc/rudiments/classes/html/classcommandline.html
share/doc/rudiments/classes/html/classcompiler-members.html
share/doc/rudiments/classes/html/classcompiler.html
share/doc/rudiments/classes/html/classcompilermodule-members.html
share/doc/rudiments/classes/html/classcompilermodule.html
share/doc/rudiments/classes/html/classcompilerpostprocessor-members.html
share/doc/rudiments/classes/html/classcompilerpostprocessor.html
share/doc/rudiments/classes/html/classcompilerpreprocessor-members.html
share/doc/rudiments/classes/html/classcompilerpreprocessor.html
share/doc/rudiments/classes/html/classcompilerprocessor-members.html
share/doc/rudiments/classes/html/classcompilerprocessor.html
share/doc/rudiments/classes/html/classcrypt-members.html
share/doc/rudiments/classes/html/classcrypt.html
share/doc/rudiments/classes/html/classdatetime-members.html
share/doc/rudiments/classes/html/classdatetime.html
share/doc/rudiments/classes/html/classdevice-members.html
share/doc/rudiments/classes/html/classdevice.html
share/doc/rudiments/classes/html/classdictionary-members.html
share/doc/rudiments/classes/html/classdictionary.html
share/doc/rudiments/classes/html/classdictionarynode-members.html
share/doc/rudiments/classes/html/classdictionarynode.html
share/doc/rudiments/classes/html/classdirectory-members.html
share/doc/rudiments/classes/html/classdirectory.html
share/doc/rudiments/classes/html/classdynamicarray-members.html
share/doc/rudiments/classes/html/classdynamicarray.html
share/doc/rudiments/classes/html/classdynamiclib-members.html
share/doc/rudiments/classes/html/classdynamiclib.html
share/doc/rudiments/classes/html/classenvironment-members.html
share/doc/rudiments/classes/html/classenvironment.html
share/doc/rudiments/classes/html/classerror-members.html
share/doc/rudiments/classes/html/classerror.html
share/doc/rudiments/classes/html/classes.html
share/doc/rudiments/classes/html/classfile-members.html
share/doc/rudiments/classes/html/classfile.html
share/doc/rudiments/classes/html/classfiledescriptor-members.html
share/doc/rudiments/classes/html/classfiledescriptor.html
share/doc/rudiments/classes/html/classfiledestination-members.html
share/doc/rudiments/classes/html/classfiledestination.html
share/doc/rudiments/classes/html/classfilesystem-members.html
share/doc/rudiments/classes/html/classfilesystem.html
share/doc/rudiments/classes/html/classgroupentry-members.html
share/doc/rudiments/classes/html/classgroupentry.html
share/doc/rudiments/classes/html/classhostentry-members.html
share/doc/rudiments/classes/html/classhostentry.html
share/doc/rudiments/classes/html/classinetsocketclient-members.html
share/doc/rudiments/classes/html/classinetsocketclient.html
share/doc/rudiments/classes/html/classinetsocketserver-members.html
share/doc/rudiments/classes/html/classinetsocketserver.html
share/doc/rudiments/classes/html/classinetsocketutil-members.html
share/doc/rudiments/classes/html/classinetsocketutil.html
share/doc/rudiments/classes/html/classlinkedlist-members.html
share/doc/rudiments/classes/html/classlinkedlist.html
share/doc/rudiments/classes/html/classlinkedlistnode-members.html
share/doc/rudiments/classes/html/classlinkedlistnode.html
share/doc/rudiments/classes/html/classlistener-members.html
share/doc/rudiments/classes/html/classlistener.html
share/doc/rudiments/classes/html/classlogdestination.html
share/doc/rudiments/classes/html/classlogger-members.html
share/doc/rudiments/classes/html/classlogger.html
share/doc/rudiments/classes/html/classmath-members.html
share/doc/rudiments/classes/html/classmath.html
share/doc/rudiments/classes/html/classmemorymap-members.html
share/doc/rudiments/classes/html/classmemorymap.html
share/doc/rudiments/classes/html/classmemorypool-members.html
share/doc/rudiments/classes/html/classmemorypool.html
share/doc/rudiments/classes/html/classmodemclient-members.html
share/doc/rudiments/classes/html/classmodemclient.html
share/doc/rudiments/classes/html/classmodemserver-members.html
share/doc/rudiments/classes/html/classmodemserver.html
share/doc/rudiments/classes/html/classmodemutil-members.html
share/doc/rudiments/classes/html/classmodemutil.html
share/doc/rudiments/classes/html/classparameterstring-members.html
share/doc/rudiments/classes/html/classparameterstring.html
share/doc/rudiments/classes/html/classpermissions-members.html
share/doc/rudiments/classes/html/classpermissions.html
share/doc/rudiments/classes/html/classprocess-members.html
share/doc/rudiments/classes/html/classprocess.html
share/doc/rudiments/classes/html/classprotocolentry-members.html
share/doc/rudiments/classes/html/classprotocolentry.html
share/doc/rudiments/classes/html/classrandomnumber-members.html
share/doc/rudiments/classes/html/classrandomnumber.html
share/doc/rudiments/classes/html/classregularexpression-members.html
share/doc/rudiments/classes/html/classregularexpression.html
share/doc/rudiments/classes/html/classsemaphoreset-members.html
share/doc/rudiments/classes/html/classsemaphoreset.html
share/doc/rudiments/classes/html/classserialport-members.html
share/doc/rudiments/classes/html/classserialport.html
share/doc/rudiments/classes/html/classserialportprofile-members.html
share/doc/rudiments/classes/html/classserialportprofile.html
share/doc/rudiments/classes/html/classserver-members.html
share/doc/rudiments/classes/html/classserver.html
share/doc/rudiments/classes/html/classserviceentry-members.html
share/doc/rudiments/classes/html/classserviceentry.html
share/doc/rudiments/classes/html/classsharedmemory-members.html
share/doc/rudiments/classes/html/classsharedmemory.html
share/doc/rudiments/classes/html/classsignalhandler-members.html
share/doc/rudiments/classes/html/classsignalhandler.html
share/doc/rudiments/classes/html/classsignalmanager-members.html
share/doc/rudiments/classes/html/classsignalmanager.html
share/doc/rudiments/classes/html/classsignalset-members.html
share/doc/rudiments/classes/html/classsignalset.html
share/doc/rudiments/classes/html/classsinglylinkedlist-members.html
share/doc/rudiments/classes/html/classsinglylinkedlist.html
share/doc/rudiments/classes/html/classsinglylinkedlistnode-members.html
share/doc/rudiments/classes/html/classsinglylinkedlistnode.html
share/doc/rudiments/classes/html/classsnooze-members.html
share/doc/rudiments/classes/html/classsnooze.html
share/doc/rudiments/classes/html/classsocketclient-members.html
share/doc/rudiments/classes/html/classsocketclient.html
share/doc/rudiments/classes/html/classsocketserver-members.html
share/doc/rudiments/classes/html/classsocketserver.html
share/doc/rudiments/classes/html/classstaticarray-members.html
share/doc/rudiments/classes/html/classstaticarray.html
share/doc/rudiments/classes/html/classstderrdestination.html
share/doc/rudiments/classes/html/classstdiofiledescriptor-members.html
share/doc/rudiments/classes/html/classstdiofiledescriptor.html
share/doc/rudiments/classes/html/classstdoutdestination.html
share/doc/rudiments/classes/html/classstringbuffer-members.html
share/doc/rudiments/classes/html/classstringbuffer.html
share/doc/rudiments/classes/html/classsys-members.html
share/doc/rudiments/classes/html/classsys.html
share/doc/rudiments/classes/html/classsyslogdestination-members.html
share/doc/rudiments/classes/html/classsyslogdestination.html
share/doc/rudiments/classes/html/classthread-members.html
share/doc/rudiments/classes/html/classthread.html
share/doc/rudiments/classes/html/classthreadmutex-members.html
share/doc/rudiments/classes/html/classthreadmutex.html
share/doc/rudiments/classes/html/classunixsocketclient-members.html
share/doc/rudiments/classes/html/classunixsocketclient.html
share/doc/rudiments/classes/html/classunixsocketserver-members.html
share/doc/rudiments/classes/html/classunixsocketserver.html
share/doc/rudiments/classes/html/classunixsocketutil-members.html
share/doc/rudiments/classes/html/classunixsocketutil.html
share/doc/rudiments/classes/html/classuserentry-members.html
share/doc/rudiments/classes/html/classuserentry.html
share/doc/rudiments/classes/html/classwinsock-members.html
share/doc/rudiments/classes/html/classwinsock.html
share/doc/rudiments/classes/html/classxmldom-members.html
share/doc/rudiments/classes/html/classxmldom.html
share/doc/rudiments/classes/html/classxmldomnode-members.html
share/doc/rudiments/classes/html/classxmldomnode.html
share/doc/rudiments/classes/html/classxmlsax-members.html
share/doc/rudiments/classes/html/classxmlsax.html
share/doc/rudiments/classes/html/client_8h_source.html
share/doc/rudiments/classes/html/clientincludes_8h_source.html
share/doc/rudiments/classes/html/closed.png
share/doc/rudiments/classes/html/codetree_8h_source.html
share/doc/rudiments/classes/html/codetreegrammar_8h_source.html
share/doc/rudiments/classes/html/codetreeincludes_8h_source.html
share/doc/rudiments/classes/html/commandline_8h_source.html
share/doc/rudiments/classes/html/commandlineincludes_8h_source.html
share/doc/rudiments/classes/html/compiler_8h_source.html
share/doc/rudiments/classes/html/compilerincludes_8h_source.html
share/doc/rudiments/classes/html/config__openvms721_8h_source.html
share/doc/rudiments/classes/html/config__vs2005_8h_source.html
share/doc/rudiments/classes/html/config__vs2010_8h_source.html
share/doc/rudiments/classes/html/config__vs2013_8h_source.html
share/doc/rudiments/classes/html/config__vs5_8h_source.html
share/doc/rudiments/classes/html/config__vs6_8h_source.html
share/doc/rudiments/classes/html/crypt_8h_source.html
share/doc/rudiments/classes/html/cryptincludes_8h_source.html
share/doc/rudiments/classes/html/datetime_8h_source.html
share/doc/rudiments/classes/html/datetimeincludes_8h_source.html
share/doc/rudiments/classes/html/device_8h_source.html
share/doc/rudiments/classes/html/deviceincludes_8h_source.html
share/doc/rudiments/classes/html/dictionary_8h_source.html
share/doc/rudiments/classes/html/dictionaryincludes_8h_source.html
share/doc/rudiments/classes/html/dictionaryinlines_8h_source.html
share/doc/rudiments/classes/html/dictionarynode_8h_source.html
share/doc/rudiments/classes/html/dir_112db68a333403863d626f7c0db30bfe.html
share/doc/rudiments/classes/html/dir_4df9bcb2c843055bc10a65c25bb4048a.html
share/doc/rudiments/classes/html/dir_d44c64559bbebec7f509842c48db8b23.html
share/doc/rudiments/classes/html/directory_8h_source.html
share/doc/rudiments/classes/html/directoryincludes_8h_source.html
share/doc/rudiments/classes/html/dll_8h_source.html
share/doc/rudiments/classes/html/doc.png
share/doc/rudiments/classes/html/doxygen.css
share/doc/rudiments/classes/html/doxygen.png
share/doc/rudiments/classes/html/dynamicarray_8h_source.html
share/doc/rudiments/classes/html/dynamicarrayincludes_8h_source.html
share/doc/rudiments/classes/html/dynamicarrayinlines_8h_source.html
share/doc/rudiments/classes/html/dynamiclib_8h_source.html
share/doc/rudiments/classes/html/dynamiclibincludes_8h_source.html
share/doc/rudiments/classes/html/dynsections.js
share/doc/rudiments/classes/html/environment_8h_source.html
share/doc/rudiments/classes/html/environmentincludes_8h_source.html
share/doc/rudiments/classes/html/error_8h_source.html
share/doc/rudiments/classes/html/errorincludes_8h_source.html
share/doc/rudiments/classes/html/file_8h_source.html
share/doc/rudiments/classes/html/filedescriptor_8h_source.html
share/doc/rudiments/classes/html/filedescriptorincludes_8h_source.html
share/doc/rudiments/classes/html/filedestination_8h_source.html
share/doc/rudiments/classes/html/fileincludes_8h_source.html
share/doc/rudiments/classes/html/filesystem_8h_source.html
share/doc/rudiments/classes/html/filesystemincludes_8h_source.html
share/doc/rudiments/classes/html/folderclosed.png
share/doc/rudiments/classes/html/folderopen.png
share/doc/rudiments/classes/html/functions.html
share/doc/rudiments/classes/html/functions_b.html
share/doc/rudiments/classes/html/functions_c.html
share/doc/rudiments/classes/html/functions_d.html
share/doc/rudiments/classes/html/functions_e.html
share/doc/rudiments/classes/html/functions_f.html
share/doc/rudiments/classes/html/functions_func.html
share/doc/rudiments/classes/html/functions_func_b.html
share/doc/rudiments/classes/html/functions_func_c.html
share/doc/rudiments/classes/html/functions_func_d.html
share/doc/rudiments/classes/html/functions_func_e.html
share/doc/rudiments/classes/html/functions_func_f.html
share/doc/rudiments/classes/html/functions_func_g.html
share/doc/rudiments/classes/html/functions_func_h.html
share/doc/rudiments/classes/html/functions_func_i.html
share/doc/rudiments/classes/html/functions_func_j.html
share/doc/rudiments/classes/html/functions_func_k.html
share/doc/rudiments/classes/html/functions_func_l.html
share/doc/rudiments/classes/html/functions_func_m.html
share/doc/rudiments/classes/html/functions_func_n.html
share/doc/rudiments/classes/html/functions_func_o.html
share/doc/rudiments/classes/html/functions_func_p.html
share/doc/rudiments/classes/html/functions_func_q.html
share/doc/rudiments/classes/html/functions_func_r.html
share/doc/rudiments/classes/html/functions_func_s.html
share/doc/rudiments/classes/html/functions_func_t.html
share/doc/rudiments/classes/html/functions_func_u.html
share/doc/rudiments/classes/html/functions_func_v.html
share/doc/rudiments/classes/html/functions_func_w.html
share/doc/rudiments/classes/html/functions_func_x.html
share/doc/rudiments/classes/html/functions_func_z.html
share/doc/rudiments/classes/html/functions_func_~.html
share/doc/rudiments/classes/html/functions_g.html
share/doc/rudiments/classes/html/functions_h.html
share/doc/rudiments/classes/html/functions_i.html
share/doc/rudiments/classes/html/functions_j.html
share/doc/rudiments/classes/html/functions_k.html
share/doc/rudiments/classes/html/functions_l.html
share/doc/rudiments/classes/html/functions_m.html
share/doc/rudiments/classes/html/functions_n.html
share/doc/rudiments/classes/html/functions_o.html
share/doc/rudiments/classes/html/functions_p.html
share/doc/rudiments/classes/html/functions_q.html
share/doc/rudiments/classes/html/functions_r.html
share/doc/rudiments/classes/html/functions_s.html
share/doc/rudiments/classes/html/functions_t.html
share/doc/rudiments/classes/html/functions_u.html
share/doc/rudiments/classes/html/functions_v.html
share/doc/rudiments/classes/html/functions_vars.html
share/doc/rudiments/classes/html/functions_w.html
share/doc/rudiments/classes/html/functions_x.html
share/doc/rudiments/classes/html/functions_z.html
share/doc/rudiments/classes/html/functions_~.html
share/doc/rudiments/classes/html/groupentry_8h_source.html
share/doc/rudiments/classes/html/groupentryincludes_8h_source.html
share/doc/rudiments/classes/html/hierarchy.html
share/doc/rudiments/classes/html/hostentry_8h_source.html
share/doc/rudiments/classes/html/hostentryincludes_8h_source.html
share/doc/rudiments/classes/html/index.html
share/doc/rudiments/classes/html/inetsocketclient_8h_source.html
share/doc/rudiments/classes/html/inetsocketclientincludes_8h_source.html
share/doc/rudiments/classes/html/inetsocketserver_8h_source.html
share/doc/rudiments/classes/html/inetsocketserverincludes_8h_source.html
share/doc/rudiments/classes/html/inetsocketutil_8h_source.html
share/doc/rudiments/classes/html/inetsocketutilincludes_8h_source.html
share/doc/rudiments/classes/html/inttypes_8h_source.html
share/doc/rudiments/classes/html/jquery.js
share/doc/rudiments/classes/html/linkedlist_8h_source.html
share/doc/rudiments/classes/html/linkedlistincludes_8h_source.html
share/doc/rudiments/classes/html/linkedlistinlines_8h_source.html
share/doc/rudiments/classes/html/linkedlistnode_8h_source.html
share/doc/rudiments/classes/html/linkedlistutilinlines_8h_source.html
share/doc/rudiments/classes/html/listener_8h_source.html
share/doc/rudiments/classes/html/listenerincludes_8h_source.html
share/doc/rudiments/classes/html/logdestination_8h_source.html
share/doc/rudiments/classes/html/logger_8h_source.html
share/doc/rudiments/classes/html/loggerincludes_8h_source.html
share/doc/rudiments/classes/html/math_8h_source.html
share/doc/rudiments/classes/html/mathincludes_8h_source.html
share/doc/rudiments/classes/html/mathinlines_8h_source.html
share/doc/rudiments/classes/html/memorymap_8h_source.html
share/doc/rudiments/classes/html/memorymapincludes_8h_source.html
share/doc/rudiments/classes/html/memorypool_8h_source.html
share/doc/rudiments/classes/html/memorypoolincludes_8h_source.html
share/doc/rudiments/classes/html/modemclient_8h_source.html
share/doc/rudiments/classes/html/modemclientincludes_8h_source.html
share/doc/rudiments/classes/html/modemserver_8h_source.html
share/doc/rudiments/classes/html/modemserverincludes_8h_source.html
share/doc/rudiments/classes/html/modemutil_8h_source.html
share/doc/rudiments/classes/html/nav_f.png
share/doc/rudiments/classes/html/nav_g.png
share/doc/rudiments/classes/html/nav_h.png
share/doc/rudiments/classes/html/networkinterface_8h_source.html
share/doc/rudiments/classes/html/new_8h_source.html
share/doc/rudiments/classes/html/open.png
share/doc/rudiments/classes/html/parameterstring_8h_source.html
share/doc/rudiments/classes/html/parameterstringincludes_8h_source.html
share/doc/rudiments/classes/html/permissions_8h_source.html
share/doc/rudiments/classes/html/permissionsincludes_8h_source.html
share/doc/rudiments/classes/html/private_2bytebuffer_8h_source.html
share/doc/rudiments/classes/html/private_2charstring_8h_source.html
share/doc/rudiments/classes/html/private_2chat_8h_source.html
share/doc/rudiments/classes/html/private_2client_8h_source.html
share/doc/rudiments/classes/html/private_2codetree_8h_source.html
share/doc/rudiments/classes/html/private_2commandline_8h_source.html
share/doc/rudiments/classes/html/private_2compiler_8h_source.html
share/doc/rudiments/classes/html/private_2datetime_8h_source.html
share/doc/rudiments/classes/html/private_2device_8h_source.html
share/doc/rudiments/classes/html/private_2dictionary_8h_source.html
share/doc/rudiments/classes/html/private_2directory_8h_source.html
share/doc/rudiments/classes/html/private_2dynamicarray_8h_source.html
share/doc/rudiments/classes/html/private_2dynamiclib_8h_source.html
share/doc/rudiments/classes/html/private_2environment_8h_source.html
share/doc/rudiments/classes/html/private_2file_8h_source.html
share/doc/rudiments/classes/html/private_2filedescriptor_8h_source.html
share/doc/rudiments/classes/html/private_2filesystem_8h_source.html
share/doc/rudiments/classes/html/private_2groupentry_8h_source.html
share/doc/rudiments/classes/html/private_2hostentry_8h_source.html
share/doc/rudiments/classes/html/private_2inetsocketclient_8h_source.html
share/doc/rudiments/classes/html/private_2inetsocketserver_8h_source.html
share/doc/rudiments/classes/html/private_2inetsocketutil_8h_source.html
share/doc/rudiments/classes/html/private_2linkedlist_8h_source.html
share/doc/rudiments/classes/html/private_2listener_8h_source.html
share/doc/rudiments/classes/html/private_2logger_8h_source.html
share/doc/rudiments/classes/html/private_2memorymap_8h_source.html
share/doc/rudiments/classes/html/private_2memorypool_8h_source.html
share/doc/rudiments/classes/html/private_2modemclient_8h_source.html
share/doc/rudiments/classes/html/private_2modemserver_8h_source.html
share/doc/rudiments/classes/html/private_2parameterstring_8h_source.html
share/doc/rudiments/classes/html/private_2permissions_8h_source.html
share/doc/rudiments/classes/html/private_2process_8h_source.html
share/doc/rudiments/classes/html/private_2protocolentry_8h_source.html
share/doc/rudiments/classes/html/private_2randomnumber_8h_source.html
share/doc/rudiments/classes/html/private_2regularexpression_8h_source.html
share/doc/rudiments/classes/html/private_2semaphoreset_8h_source.html
share/doc/rudiments/classes/html/private_2serialport_8h_source.html
share/doc/rudiments/classes/html/private_2serialportprofile_8h_source.html
share/doc/rudiments/classes/html/private_2server_8h_source.html
share/doc/rudiments/classes/html/private_2serviceentry_8h_source.html
share/doc/rudiments/classes/html/private_2sharedmemory_8h_source.html
share/doc/rudiments/classes/html/private_2singlylinkedlist_8h_source.html
share/doc/rudiments/classes/html/private_2snooze_8h_source.html
share/doc/rudiments/classes/html/private_2socketclient_8h_source.html
share/doc/rudiments/classes/html/private_2socketserver_8h_source.html
share/doc/rudiments/classes/html/private_2staticarray_8h_source.html
share/doc/rudiments/classes/html/private_2stdio_8h_source.html
share/doc/rudiments/classes/html/private_2stringbuffer_8h_source.html
share/doc/rudiments/classes/html/private_2thread_8h_source.html
share/doc/rudiments/classes/html/private_2threadmutex_8h_source.html
share/doc/rudiments/classes/html/private_2unixsocketclient_8h_source.html
share/doc/rudiments/classes/html/private_2unixsocketserver_8h_source.html
share/doc/rudiments/classes/html/private_2unixsocketutil_8h_source.html
share/doc/rudiments/classes/html/private_2userentry_8h_source.html
share/doc/rudiments/classes/html/private_2xmldom_8h_source.html
share/doc/rudiments/classes/html/private_2xmldomnode_8h_source.html
share/doc/rudiments/classes/html/private_2xmlsax_8h_source.html
share/doc/rudiments/classes/html/process_8h_source.html
share/doc/rudiments/classes/html/processincludes_8h_source.html
share/doc/rudiments/classes/html/protocolentry_8h_source.html
share/doc/rudiments/classes/html/protocolentryincludes_8h_source.html
share/doc/rudiments/classes/html/randomnumber_8h_source.html
share/doc/rudiments/classes/html/randomnumberincludes_8h_source.html
share/doc/rudiments/classes/html/regularexpression_8h_source.html
share/doc/rudiments/classes/html/regularexpressionincludes_8h_source.html
share/doc/rudiments/classes/html/resultcodes_8h_source.html
share/doc/rudiments/classes/html/rudimentsinlines_8h_source.html
share/doc/rudiments/classes/html/semaphoreset_8h_source.html
share/doc/rudiments/classes/html/semaphoresetincludes_8h_source.html
share/doc/rudiments/classes/html/serialport_8h_source.html
share/doc/rudiments/classes/html/serialportincludes_8h_source.html
share/doc/rudiments/classes/html/serialportprofile_8h_source.html
share/doc/rudiments/classes/html/serialportprofileincludes_8h_source.html
share/doc/rudiments/classes/html/server_8h_source.html
share/doc/rudiments/classes/html/serverincludes_8h_source.html
share/doc/rudiments/classes/html/serviceentry_8h_source.html
share/doc/rudiments/classes/html/serviceentryincludes_8h_source.html
share/doc/rudiments/classes/html/sharedmemory_8h_source.html
share/doc/rudiments/classes/html/sharedmemoryincludes_8h_source.html
share/doc/rudiments/classes/html/signalclasses_8h_source.html
share/doc/rudiments/classes/html/signalclassesincludes_8h_source.html
share/doc/rudiments/classes/html/signalhandler_8h_source.html
share/doc/rudiments/classes/html/signalset_8h_source.html
share/doc/rudiments/classes/html/singlylinkedlist_8h_source.html
share/doc/rudiments/classes/html/singlylinkedlistincludes_8h_source.html
share/doc/rudiments/classes/html/singlylinkedlistinlines_8h_source.html
share/doc/rudiments/classes/html/singlylinkedlistnode_8h_source.html
share/doc/rudiments/classes/html/snooze_8h_source.html
share/doc/rudiments/classes/html/snoozeincludes_8h_source.html
share/doc/rudiments/classes/html/socketclient_8h_source.html
share/doc/rudiments/classes/html/socketclientincludes_8h_source.html
share/doc/rudiments/classes/html/socketserver_8h_source.html
share/doc/rudiments/classes/html/socketserverincludes_8h_source.html
share/doc/rudiments/classes/html/splitbar.png
share/doc/rudiments/classes/html/staticarray_8h_source.html
share/doc/rudiments/classes/html/staticarrayinlines_8h_source.html
share/doc/rudiments/classes/html/stderrdestination_8h_source.html
share/doc/rudiments/classes/html/stdio_8h_source.html
share/doc/rudiments/classes/html/stdoutdestination_8h_source.html
share/doc/rudiments/classes/html/stringbuffer_8h_source.html
share/doc/rudiments/classes/html/stringbufferincludes_8h_source.html
share/doc/rudiments/classes/html/structsockaddr__un-members.html
share/doc/rudiments/classes/html/structsockaddr__un.html
share/doc/rudiments/classes/html/structtermios-members.html
share/doc/rudiments/classes/html/structtermios.html
share/doc/rudiments/classes/html/sync_off.png
share/doc/rudiments/classes/html/sync_on.png
share/doc/rudiments/classes/html/sys_8h_source.html
share/doc/rudiments/classes/html/sysincludes_8h_source.html
share/doc/rudiments/classes/html/syslogdestination_8h_source.html
share/doc/rudiments/classes/html/tab_a.png
share/doc/rudiments/classes/html/tab_b.png
share/doc/rudiments/classes/html/tab_h.png
share/doc/rudiments/classes/html/tab_s.png
share/doc/rudiments/classes/html/tabs.css
share/doc/rudiments/classes/html/thread_8h_source.html
share/doc/rudiments/classes/html/threadincludes_8h_source.html
share/doc/rudiments/classes/html/threadmutex_8h_source.html
share/doc/rudiments/classes/html/threadmutexincludes_8h_source.html
share/doc/rudiments/classes/html/unixsocketclient_8h_source.html
share/doc/rudiments/classes/html/unixsocketclientincludes_8h_source.html
share/doc/rudiments/classes/html/unixsocketserver_8h_source.html
share/doc/rudiments/classes/html/unixsocketserverincludes_8h_source.html
share/doc/rudiments/classes/html/unixsocketutil_8h_source.html
share/doc/rudiments/classes/html/unixsocketutilincludes_8h_source.html
share/doc/rudiments/classes/html/userentry_8h_source.html
share/doc/rudiments/classes/html/userentryincludes_8h_source.html
share/doc/rudiments/classes/html/winsock_8h_source.html
share/doc/rudiments/classes/html/xmldom_8h_source.html
share/doc/rudiments/classes/html/xmldomincludes_8h_source.html
share/doc/rudiments/classes/html/xmldomnode_8h_source.html
share/doc/rudiments/classes/html/xmldomnodeincludes_8h_source.html
share/doc/rudiments/classes/html/xmlsax_8h_source.html
share/doc/rudiments/classes/html/xmlsaxincludes_8h_source.html
share/doc/rudiments/css/styles.css
share/doc/rudiments/features/betterc.html
share/doc/rudiments/features/compatibility.html
share/doc/rudiments/features/datastructures.html
share/doc/rudiments/features/frameworks.html
share/doc/rudiments/features/lightweight.html
share/doc/rudiments/features/utilityclasses.html
share/doc/rudiments/index.html
share/doc/rudiments/installing.html
share/doc/rudiments/programming/bytebuffer.html
share/doc/rudiments/programming/bytestring.html
share/doc/rudiments/programming/character.html
share/doc/rudiments/programming/charstring.html
share/doc/rudiments/programming/chat.html
share/doc/rudiments/programming/codetree.html
share/doc/rudiments/programming/commandline.html
share/doc/rudiments/programming/compiler.html
share/doc/rudiments/programming/crypt.html
share/doc/rudiments/programming/datetime.html
share/doc/rudiments/programming/device.html
share/doc/rudiments/programming/dictionary.html
share/doc/rudiments/programming/directory.html
share/doc/rudiments/programming/dynamicarray.html
share/doc/rudiments/programming/dynamiclib.html
share/doc/rudiments/programming/environment.html
share/doc/rudiments/programming/error.html
share/doc/rudiments/programming/file.html
share/doc/rudiments/programming/filesystem.html
share/doc/rudiments/programming/groupentry.html
share/doc/rudiments/programming/guide.html
share/doc/rudiments/programming/hostentry.html
share/doc/rudiments/programming/inetsocketclient.html
share/doc/rudiments/programming/inetsocketserver.html
share/doc/rudiments/programming/linkedlist.html
share/doc/rudiments/programming/listener.html
share/doc/rudiments/programming/logger.html
share/doc/rudiments/programming/memorymap.html
share/doc/rudiments/programming/memorypool.html
share/doc/rudiments/programming/modemclient.html
share/doc/rudiments/programming/modemserver.html
share/doc/rudiments/programming/parameterstring.html
share/doc/rudiments/programming/permissions.html
share/doc/rudiments/programming/process.html
share/doc/rudiments/programming/protocolentry.html
share/doc/rudiments/programming/randomnumber.html
share/doc/rudiments/programming/regularexpression.html
share/doc/rudiments/programming/semaphoreset.html
share/doc/rudiments/programming/serialport.html
share/doc/rudiments/programming/serialportprofile.html
share/doc/rudiments/programming/serviceentry.html
share/doc/rudiments/programming/sharedmemory.html
share/doc/rudiments/programming/signal.html
share/doc/rudiments/programming/singlylinkedlist.html
share/doc/rudiments/programming/snooze.html
share/doc/rudiments/programming/staticarray.html
share/doc/rudiments/programming/stdio.html
share/doc/rudiments/programming/stringbuffer.html
share/doc/rudiments/programming/sys.html
share/doc/rudiments/programming/thread.html
share/doc/rudiments/programming/threadmutex.html
share/doc/rudiments/programming/unixsocketclient.html
share/doc/rudiments/programming/unixsocketserver.html
share/doc/rudiments/programming/userentry.html
share/doc/rudiments/programming/xmldom.html
share/doc/rudiments/programming/xmlsax.html
share/licenses/rudiments/COPYING