Source code
Revision control
Copy as Markdown
Other Tools
# Xsum library
the directory contains a reduced version of the xsum library as required for
the implementation of the
since the library isn't expected to have frequent updates, the manual vendoring
process was followed. In addition to importing select code a few modifications
were made to the code:
- The files were updated from .c files (as found in the original repository)
to c++ files, .cpp.
- The code was updated to not use C specific syntax specifically the orginal
code extensively used the ["restrict type qualifier"](https://en.cppreference.com/w/c/language/restrict)
whose usage has been removed to comply with C++ syntax.