summaryrefslogtreecommitdiff
path: root/Userland/Utilities/tree.cpp
AgeCommit message (Collapse)Author
2021-04-27Userland: Move HOST_NAME_MAX to limits.hJean-Baptiste Boric
POSIX mandates its definition there.
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-02-26Everywhere: Remove a bunch of redundant 'AK::' namespace prefixesLinus Groh
This is basically just for consistency, it's quite strange to see multiple AK container types next to each other, some with and some without the namespace prefix - we're 'using AK::Foo;' a lot and should leverage that. :^)
2021-02-08Everywhere: Fix weird includesBen Wiederhake
2021-01-12Userland: Move command-line utilities to Userland/Utilities/Andreas Kling