C implementation of the simple directory queue algorithm
Description
The goal of this library is to offer a "simple" queue system using the
underlying filesystem for storage, security and to prevent race conditions
via atomic operations. It focuses on simplicity, robustness and scalability.
Multiple concurrent readers and writers can interact with the same queue.
Other implementations of the same algorithm exist so readers and writers can
be written in different programming languages.