LibDiff: Add library for working with diffs

LibDiff currently contains functionality for parsing diffs in the
"unified format" and for a generating simple diff that contains only
additions.
This commit is contained in:
Itamar 2020-09-12 20:38:55 +03:00 committed by Andreas Kling
commit 11440fa78f
Notes: sideshowbarker 2024-07-19 02:37:27 +09:00
6 changed files with 293 additions and 0 deletions

View file

@ -0,0 +1,8 @@
set(SOURCES
Hunks.cpp
Format.cpp
)
serenity_lib(LibDiff diff)
target_link_libraries(LibDiff LibC)