summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-06 15:04:03 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-06 15:04:03 +0100
commitd17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf (patch)
tree6c5ed42a008c6d74e427909eaed8e52182e0f7eb /Userland
parent7415e6ef9fbd1529cd13db315ccda25c52f56105 (diff)
downloadserenity-d17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf.zip
LibCore: Remove leading C from filenames
Diffstat (limited to 'Userland')
-rw-r--r--Userland/allocate.cpp2
-rw-r--r--Userland/aplay.cpp2
-rw-r--r--Userland/cal.cpp2
-rw-r--r--Userland/chroot.cpp2
-rw-r--r--Userland/copy.cpp4
-rw-r--r--Userland/cp.cpp4
-rw-r--r--Userland/df.cpp2
-rw-r--r--Userland/disk_benchmark.cpp2
-rw-r--r--Userland/dmesg.cpp2
-rw-r--r--Userland/gron.cpp2
-rw-r--r--Userland/head.cpp2
-rw-r--r--Userland/html.cpp2
-rw-r--r--Userland/id.cpp2
-rw-r--r--Userland/ifconfig.cpp2
-rw-r--r--Userland/jp.cpp2
-rw-r--r--Userland/keymap.cpp2
-rw-r--r--Userland/killall.cpp2
-rw-r--r--Userland/ln.cpp2
-rw-r--r--Userland/ls.cpp4
-rw-r--r--Userland/lspci.cpp2
-rw-r--r--Userland/man.cpp2
-rw-r--r--Userland/md.cpp2
-rw-r--r--Userland/mount.cpp4
-rw-r--r--Userland/nl.cpp2
-rw-r--r--Userland/pape.cpp4
-rw-r--r--Userland/paste.cpp2
-rw-r--r--Userland/pidof.cpp4
-rw-r--r--Userland/pro.cpp2
-rw-r--r--Userland/ps.cpp4
-rw-r--r--Userland/rm.cpp2
-rw-r--r--Userland/rpcdump.cpp4
-rw-r--r--Userland/shutdown.cpp2
-rw-r--r--Userland/sysctl.cpp6
-rw-r--r--Userland/tail.cpp4
-rw-r--r--Userland/tee.cpp2
-rw-r--r--Userland/top.cpp2
-rw-r--r--Userland/truncate.cpp2
-rw-r--r--Userland/umount.cpp2
-rw-r--r--Userland/useradd.cpp2
-rw-r--r--Userland/wc.cpp2
40 files changed, 51 insertions, 51 deletions
diff --git a/Userland/allocate.cpp b/Userland/allocate.cpp
index a5c6d17cad..131cade5ff 100644
--- a/Userland/allocate.cpp
+++ b/Userland/allocate.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/String.h>
-#include <LibCore/CElapsedTimer.h>
+#include <LibCore/ElapsedTimer.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/aplay.cpp b/Userland/aplay.cpp
index 47b49eac68..174a7a9f22 100644
--- a/Userland/aplay.cpp
+++ b/Userland/aplay.cpp
@@ -27,7 +27,7 @@
#include <LibAudio/ABuffer.h>
#include <LibAudio/AClientConnection.h>
#include <LibAudio/AWavLoader.h>
-#include <LibCore/CEventLoop.h>
+#include <LibCore/EventLoop.h>
#include <stdio.h>
int main(int argc, char** argv)
diff --git a/Userland/cal.cpp b/Userland/cal.cpp
index 8c2a72d080..552cab0111 100644
--- a/Userland/cal.cpp
+++ b/Userland/cal.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <time.h>
diff --git a/Userland/chroot.cpp b/Userland/chroot.cpp
index 82d5f1f7c1..a739b8bbbc 100644
--- a/Userland/chroot.cpp
+++ b/Userland/chroot.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/StringView.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/copy.cpp b/Userland/copy.cpp
index f9c2d7d4ae..9dd372d759 100644
--- a/Userland/copy.cpp
+++ b/Userland/copy.cpp
@@ -27,8 +27,8 @@
#include <AK/ByteBuffer.h>
#include <AK/String.h>
#include <AK/StringBuilder.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CFile.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/File.h>
#include <LibGUI/GApplication.h>
#include <LibGUI/GClipboard.h>
#include <stdio.h>
diff --git a/Userland/cp.cpp b/Userland/cp.cpp
index a9694bed4a..05a1a4014f 100644
--- a/Userland/cp.cpp
+++ b/Userland/cp.cpp
@@ -27,8 +27,8 @@
#include <AK/FileSystemPath.h>
#include <AK/String.h>
#include <AK/StringBuilder.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CDirIterator.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/DirIterator.h>
#include <assert.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/Userland/df.cpp b/Userland/df.cpp
index af378e8f60..3d8d4b5182 100644
--- a/Userland/df.cpp
+++ b/Userland/df.cpp
@@ -28,7 +28,7 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/Vector.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/disk_benchmark.cpp b/Userland/disk_benchmark.cpp
index 66f2606815..8311e15238 100644
--- a/Userland/disk_benchmark.cpp
+++ b/Userland/disk_benchmark.cpp
@@ -28,7 +28,7 @@
#include <AK/String.h>
#include <AK/Types.h>
#include <AK/Vector.h>
-#include <LibCore/CElapsedTimer.h>
+#include <LibCore/ElapsedTimer.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/dmesg.cpp b/Userland/dmesg.cpp
index 05134e3f64..013bb74c17 100644
--- a/Userland/dmesg.cpp
+++ b/Userland/dmesg.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <assert.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/Userland/gron.cpp b/Userland/gron.cpp
index ceba6438f9..2f9b9c0911 100644
--- a/Userland/gron.cpp
+++ b/Userland/gron.cpp
@@ -28,7 +28,7 @@
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <AK/StringBuilder.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <stdio.h>
static bool use_color = false;
diff --git a/Userland/head.cpp b/Userland/head.cpp
index d4c4613cd9..8cfd91b68b 100644
--- a/Userland/head.cpp
+++ b/Userland/head.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/StdLibExtras.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <errno.h>
#include <stdio.h>
diff --git a/Userland/html.cpp b/Userland/html.cpp
index 926f59bd40..6e9c81be8c 100644
--- a/Userland/html.cpp
+++ b/Userland/html.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <LibGUI/GAboutDialog.h>
#include <LibGUI/GAction.h>
#include <LibGUI/GApplication.h>
diff --git a/Userland/id.cpp b/Userland/id.cpp
index dd21bf3ae1..fc0368b396 100644
--- a/Userland/id.cpp
+++ b/Userland/id.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <alloca.h>
#include <grp.h>
#include <pwd.h>
diff --git a/Userland/ifconfig.cpp b/Userland/ifconfig.cpp
index 7a2d347551..7a26c6ffef 100644
--- a/Userland/ifconfig.cpp
+++ b/Userland/ifconfig.cpp
@@ -28,7 +28,7 @@
#include <AK/JsonObject.h>
#include <AK/String.h>
#include <AK/Types.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <net/if.h>
#include <netinet/in.h>
#include <stdio.h>
diff --git a/Userland/jp.cpp b/Userland/jp.cpp
index 0bd2246fba..b11076367f 100644
--- a/Userland/jp.cpp
+++ b/Userland/jp.cpp
@@ -28,7 +28,7 @@
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <AK/StringBuilder.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <stdio.h>
static void print(const JsonValue& value, int indent = 0);
diff --git a/Userland/keymap.cpp b/Userland/keymap.cpp
index 8708e8ae14..1188b62e0e 100644
--- a/Userland/keymap.cpp
+++ b/Userland/keymap.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/JsonObject.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <stdio.h>
#include <Kernel/Syscall.h>
diff --git a/Userland/killall.cpp b/Userland/killall.cpp
index bc680ff7bd..444bef6543 100644
--- a/Userland/killall.cpp
+++ b/Userland/killall.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/String.h>
-#include <LibCore/CProcessStatisticsReader.h>
+#include <LibCore/ProcessStatisticsReader.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/ln.cpp b/Userland/ln.cpp
index a7c2b1bb51..9b4c28808d 100644
--- a/Userland/ln.cpp
+++ b/Userland/ln.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/ls.cpp b/Userland/ls.cpp
index a2f68c33fb..019bb042c8 100644
--- a/Userland/ls.cpp
+++ b/Userland/ls.cpp
@@ -29,8 +29,8 @@
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CDirIterator.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/DirIterator.h>
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
diff --git a/Userland/lspci.cpp b/Userland/lspci.cpp
index ff2907928e..ab0b527568 100644
--- a/Userland/lspci.cpp
+++ b/Userland/lspci.cpp
@@ -27,7 +27,7 @@
#include <AK/String.h>
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <LibPCIDB/Database.h>
#include <stdio.h>
diff --git a/Userland/man.cpp b/Userland/man.cpp
index 44ccdaebfe..528b41bb72 100644
--- a/Userland/man.cpp
+++ b/Userland/man.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/String.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <LibMarkdown/MDDocument.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/md.cpp b/Userland/md.cpp
index dda60557d7..49f938590e 100644
--- a/Userland/md.cpp
+++ b/Userland/md.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/String.h>
-#include <LibCore/CFile.h>
+#include <LibCore/File.h>
#include <LibMarkdown/MDDocument.h>
#include <stdio.h>
diff --git a/Userland/mount.cpp b/Userland/mount.cpp
index fb90ed4ff2..dc4149a959 100644
--- a/Userland/mount.cpp
+++ b/Userland/mount.cpp
@@ -27,8 +27,8 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CFile.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/File.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/nl.cpp b/Userland/nl.cpp
index 99aed8a362..ad6e965ae3 100644
--- a/Userland/nl.cpp
+++ b/Userland/nl.cpp
@@ -26,7 +26,7 @@
#include <AK/String.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <string.h>
diff --git a/Userland/pape.cpp b/Userland/pape.cpp
index 6b3e2f3b69..d9a1b0d886 100644
--- a/Userland/pape.cpp
+++ b/Userland/pape.cpp
@@ -28,8 +28,8 @@
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CDirIterator.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/DirIterator.h>
#include <LibGUI/GApplication.h>
#include <LibGUI/GDesktop.h>
#include <dirent.h>
diff --git a/Userland/paste.cpp b/Userland/paste.cpp
index a5fe71643f..7fbab6c555 100644
--- a/Userland/paste.cpp
+++ b/Userland/paste.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/String.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <LibGUI/GApplication.h>
#include <LibGUI/GClipboard.h>
#include <stdio.h>
diff --git a/Userland/pidof.cpp b/Userland/pidof.cpp
index 049da70e8e..2a11481e07 100644
--- a/Userland/pidof.cpp
+++ b/Userland/pidof.cpp
@@ -27,8 +27,8 @@
#include <AK/HashMap.h>
#include <AK/String.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CProcessStatisticsReader.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/ProcessStatisticsReader.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/pro.cpp b/Userland/pro.cpp
index 7f05438024..788e42427f 100644
--- a/Userland/pro.cpp
+++ b/Userland/pro.cpp
@@ -26,7 +26,7 @@
#include <AK/URL.h>
#include <AK/SharedBuffer.h>
-#include <LibCore/CEventLoop.h>
+#include <LibCore/EventLoop.h>
#include <LibProtocol/Client.h>
#include <LibProtocol/Download.h>
#include <stdio.h>
diff --git a/Userland/ps.cpp b/Userland/ps.cpp
index dc71708aa9..5ffb8ff20f 100644
--- a/Userland/ps.cpp
+++ b/Userland/ps.cpp
@@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CFile.h>
-#include <LibCore/CProcessStatisticsReader.h>
+#include <LibCore/File.h>
+#include <LibCore/ProcessStatisticsReader.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/rm.cpp b/Userland/rm.cpp
index 6fbbeb8a2c..ed0a82c52c 100644
--- a/Userland/rm.cpp
+++ b/Userland/rm.cpp
@@ -27,7 +27,7 @@
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <dirent.h>
#include <stdio.h>
#include <string.h>
diff --git a/Userland/rpcdump.cpp b/Userland/rpcdump.cpp
index f4dc84e109..3a2b82bcb4 100644
--- a/Userland/rpcdump.cpp
+++ b/Userland/rpcdump.cpp
@@ -26,8 +26,8 @@
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
-#include <LibCore/CEventLoop.h>
-#include <LibCore/CLocalSocket.h>
+#include <LibCore/EventLoop.h>
+#include <LibCore/LocalSocket.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/shutdown.cpp b/Userland/shutdown.cpp
index 1d44c02144..9c080771e8 100644
--- a/Userland/shutdown.cpp
+++ b/Userland/shutdown.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/sysctl.cpp b/Userland/sysctl.cpp
index f1525f8b12..e315bbc56a 100644
--- a/Userland/sysctl.cpp
+++ b/Userland/sysctl.cpp
@@ -27,9 +27,9 @@
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CDirIterator.h>
-#include <LibCore/CFile.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/DirIterator.h>
+#include <LibCore/File.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/Userland/tail.cpp b/Userland/tail.cpp
index 25c9a1e409..2d0acde35b 100644
--- a/Userland/tail.cpp
+++ b/Userland/tail.cpp
@@ -25,8 +25,8 @@
*/
#include <AK/Assertions.h>
-#include <LibCore/CArgsParser.h>
-#include <LibCore/CFile.h>
+#include <LibCore/ArgsParser.h>
+#include <LibCore/File.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/tee.cpp b/Userland/tee.cpp
index ec9809d2c5..f1b59f3c6e 100644
--- a/Userland/tee.cpp
+++ b/Userland/tee.cpp
@@ -25,7 +25,7 @@
*/
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
diff --git a/Userland/top.cpp b/Userland/top.cpp
index cca0a7c24d..37175cf3d3 100644
--- a/Userland/top.cpp
+++ b/Userland/top.cpp
@@ -31,7 +31,7 @@
#include <AK/QuickSort.h>
#include <AK/String.h>
#include <AK/Vector.h>
-#include <LibCore/CProcessStatisticsReader.h>
+#include <LibCore/ProcessStatisticsReader.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/Userland/truncate.cpp b/Userland/truncate.cpp
index b6f6d0398d..21a4bb07f6 100644
--- a/Userland/truncate.cpp
+++ b/Userland/truncate.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <sys/stat.h>
diff --git a/Userland/umount.cpp b/Userland/umount.cpp
index d3e708e740..63b20cf344 100644
--- a/Userland/umount.cpp
+++ b/Userland/umount.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <unistd.h>
diff --git a/Userland/useradd.cpp b/Userland/useradd.cpp
index 6e9a4b8493..5ee9df57f8 100644
--- a/Userland/useradd.cpp
+++ b/Userland/useradd.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <AK/String.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <ctype.h>
#include <pwd.h>
#include <stdio.h>
diff --git a/Userland/wc.cpp b/Userland/wc.cpp
index b2bb024eb5..60a4c66e13 100644
--- a/Userland/wc.cpp
+++ b/Userland/wc.cpp
@@ -26,7 +26,7 @@
#include <AK/String.h>
#include <AK/Vector.h>
-#include <LibCore/CArgsParser.h>
+#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <sys/stat.h>