1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47:35 +00:00

du: Port to LibMain

This ports 'du' utility to LibMain. Also moves to use StringView and
StringView literals more instead of raw C strings.
This commit is contained in:
Kenneth Myhra 2021-12-18 18:59:15 +01:00 committed by Andreas Kling
parent 3528563e3d
commit 2e0f53c25d
2 changed files with 26 additions and 38 deletions

View file

@ -85,6 +85,7 @@ target_link_libraries(diff LibDiff LibMain)
target_link_libraries(dirname LibMain)
target_link_libraries(disasm LibX86)
target_link_libraries(dmesg LibMain)
target_link_libraries(du LibMain)
target_link_libraries(echo LibMain)
target_link_libraries(env LibMain)
target_link_libraries(expr LibRegex LibMain)