felta

felta
Login

felta

"Felta" (Fossil Delta) is a standalone C library version of the core file-delta code from Fossil SCM, tidied up a bit to make it suitable for use as a standalone library, and optionally (off by default) extends it to support multiple integer encodings (bases 10, 16, and 64). It consists of only two files (one .c and one .h), has a small, easy-to-use API, has no dependencies beyond the standard C library (C89 suffices), and in compiled form has a foot print of only about 12kb. This delta format is known to perform very well in the Fossil SCM.

The delta format is described here:

https://fossil-scm.org/home/doc/trunk/www/delta_format.wiki

This version supports an option to use different encodings for numbers, but is by default compatible with that code. See felta_create() for the details.

License: Simplified BSD License (also known as the "2-Clause License" or "FreeBSD License")

Download: see the download page.

Primary properties of this library: