summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibELF/DynamicLinker.h
AgeCommit message (Collapse)Author
2021-02-20LibELF: Use StringView instead of "const char*" in dynamic linker codeAndreas Kling
There's no reason to use C strings more than absolutely necessary.
2021-01-25LibELF: Use Optional<SymbolLookupResult> as a return typeAndreas Kling
Instead of storing a "found" state inside the result object.
2021-01-22Meta: Fix silly copyright lineBen Wiederhake
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling