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

LibCore: Remove leading C from filenames

This commit is contained in:
Andreas Kling 2020-02-06 15:04:03 +01:00
parent 7415e6ef9f
commit d17e23bd27
214 changed files with 361 additions and 361 deletions

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CArgsParser.h"
#include <AK/StringBuilder.h>
#include <LibCore/ArgsParser.h>
#include <getopt.h>
#include <limits.h>
#include <stdio.h>

View file

@ -25,9 +25,9 @@
*/
#include <AK/StringBuilder.h>
#include <LibCore/CConfigFile.h>
#include <LibCore/CFile.h>
#include <LibCore/CUserInfo.h>
#include <LibCore/ConfigFile.h>
#include <LibCore/File.h>
#include <LibCore/UserInfo.h>
#include <pwd.h>
#include <stdio.h>
#include <unistd.h>

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CDirIterator.h"
#include <LibCore/DirIterator.h>
#include <errno.h>
namespace Core {

View file

@ -26,7 +26,7 @@
#include <AK/Assertions.h>
#include <AK/Time.h>
#include <LibCore/CElapsedTimer.h>
#include <LibCore/ElapsedTimer.h>
#include <sys/time.h>
namespace Core {

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CEvent.h>
#include <LibCore/CObject.h>
#include <LibCore/Event.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -28,12 +28,12 @@
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <AK/Time.h>
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/CSyscallUtils.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/LocalSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
#include <LibCore/SyscallUtils.h>
#include <LibThread/Lock.h>
#include <errno.h>
#include <fcntl.h>

View file

@ -31,8 +31,8 @@
#include <AK/OwnPtr.h>
#include <AK/Vector.h>
#include <AK/WeakPtr.h>
#include <LibCore/CEvent.h>
#include <LibCore/CLocalServer.h>
#include <LibCore/Event.h>
#include <LibCore/LocalServer.h>
#include <LibThread/Lock.h>
#include <sys/select.h>
#include <sys/time.h>

View file

@ -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 <errno.h>
#include <fcntl.h>
#include <stdio.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/String.h>
#include <LibCore/CIODevice.h>
#include <LibCore/IODevice.h>
namespace Core {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CGzip.h"
#include <AK/ByteBuffer.h>
#include <AK/Optional.h>
#include <LibCore/Gzip.h>
#include <LibCore/puff.h>
#include <limits.h>
#include <stddef.h>
@ -131,8 +131,8 @@ Optional<ByteBuffer> CGzip::decompress(const ByteBuffer& data)
if (puff_ret == 0) {
dbg() << "Gzip::decompress: Decompression success.";
break;
}
}
if (puff_ret == 1) {
// FIXME: Find a better way of decompressing without needing to try over and over again.
dbg() << "Gzip::decompress: Output buffer exhausted. Growing.";

View file

@ -24,10 +24,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CGzip.h>
#include <LibCore/CHttpJob.h>
#include <LibCore/CHttpResponse.h>
#include <LibCore/CTCPSocket.h>
#include <LibCore/Gzip.h>
#include <LibCore/HttpJob.h>
#include <LibCore/HttpResponse.h>
#include <LibCore/TCPSocket.h>
#include <stdio.h>
#include <unistd.h>

View file

@ -27,9 +27,9 @@
#pragma once
#include <AK/HashMap.h>
#include <LibCore/CHttpRequest.h>
#include <LibCore/CHttpResponse.h>
#include <LibCore/CNetworkJob.h>
#include <LibCore/HttpRequest.h>
#include <LibCore/HttpResponse.h>
#include <LibCore/NetworkJob.h>
namespace Core {

View file

@ -25,8 +25,8 @@
*/
#include <AK/StringBuilder.h>
#include <LibCore/CHttpJob.h>
#include <LibCore/CHttpRequest.h>
#include <LibCore/HttpJob.h>
#include <LibCore/HttpRequest.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CHttpResponse.h>
#include <LibCore/HttpResponse.h>
namespace Core {

View file

@ -28,7 +28,7 @@
#include <AK/HashMap.h>
#include <AK/String.h>
#include <LibCore/CNetworkResponse.h>
#include <LibCore/NetworkResponse.h>
namespace Core {

View file

@ -25,8 +25,8 @@
*/
#include <AK/PrintfImplementation.h>
#include <LibCore/CIODevice.h>
#include <LibCore/CSyscallUtils.h>
#include <LibCore/IODevice.h>
#include <LibCore/SyscallUtils.h>
#include <errno.h>
#include <stdio.h>
#include <sys/select.h>

View file

@ -28,7 +28,7 @@
#include <AK/ByteBuffer.h>
#include <AK/StringView.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/StdLibExtras.h>
#include <LibCore/CIODevice.h>
#include <LibCore/IODevice.h>
namespace Core {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CLocalServer.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h>
#include <LibCore/LocalServer.h>
#include <LibCore/LocalSocket.h>
#include <LibCore/Notifier.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/stat.h>

View file

@ -26,8 +26,8 @@
#pragma once
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CLocalSocket.h>
#include <LibCore/LocalSocket.h>
#include <errno.h>
#include <sys/socket.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Badge.h>
#include <LibCore/CSocket.h>
#include <LibCore/Socket.h>
namespace Core {

View file

@ -1,30 +1,30 @@
OBJS = \
CArgsParser.o \
CIODevice.o \
CFile.o \
CSocket.o \
CLocalSocket.o \
CLocalServer.o \
CTCPSocket.o \
CTCPServer.o \
CUdpSocket.o \
CUdpServer.o \
CElapsedTimer.o \
CNotifier.o \
CHttpRequest.o \
CHttpResponse.o \
CHttpJob.o \
CNetworkJob.o \
CNetworkResponse.o \
CObject.o \
CTimer.o \
CEventLoop.o \
CConfigFile.o \
CEvent.o \
CProcessStatisticsReader.o \
CDirIterator.o \
CUserInfo.o \
CGzip.o \
ArgsParser.o \
IODevice.o \
File.o \
Socket.o \
LocalSocket.o \
LocalServer.o \
TCPSocket.o \
TCPServer.o \
UdpSocket.o \
UdpServer.o \
ElapsedTimer.o \
Notifier.o \
HttpRequest.o \
HttpResponse.o \
HttpJob.o \
NetworkJob.o \
NetworkResponse.o \
Object.o \
Timer.o \
EventLoop.o \
ConfigFile.o \
Event.o \
ProcessStatisticsReader.o \
DirIterator.o \
UserInfo.o \
Gzip.o \
puff.o
LIBRARY = libcore.a

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CNetworkJob.h>
#include <LibCore/CNetworkResponse.h>
#include <LibCore/NetworkJob.h>
#include <LibCore/NetworkResponse.h>
#include <stdio.h>
//#define CNETWORKJOB_DEBUG

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CNetworkResponse.h>
#include <LibCore/NetworkResponse.h>
namespace Core {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CNotifier.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Notifier.h>
namespace Core {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -27,9 +27,9 @@
#include <AK/Assertions.h>
#include <AK/JsonObject.h>
#include <AK/kstdio.h>
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CObject.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Object.h>
#include <stdio.h>
namespace Core {

View file

@ -27,8 +27,8 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <LibCore/CFile.h>
#include <LibCore/CProcessStatisticsReader.h>
#include <LibCore/File.h>
#include <LibCore/ProcessStatisticsReader.h>
#include <pwd.h>
#include <stdio.h>

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CNotifier.h>
#include <LibCore/CSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/Socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>

View file

@ -26,8 +26,8 @@
#pragma once
#include <LibCore/CIODevice.h>
#include <LibCore/CSocketAddress.h>
#include <LibCore/IODevice.h>
#include <LibCore/SocketAddress.h>
namespace Core {

View file

@ -26,9 +26,9 @@
#include <AK/IPv4Address.h>
#include <AK/Types.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CTCPServer.h>
#include <LibCore/CTCPSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/TCPServer.h>
#include <LibCore/TCPSocket.h>
#include <stdio.h>
#include <sys/socket.h>

View file

@ -27,8 +27,8 @@
#pragma once
#include <AK/IPv4Address.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CTCPSocket.h>
#include <LibCore/TCPSocket.h>
#include <errno.h>
#include <sys/socket.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Badge.h>
#include <LibCore/CSocket.h>
#include <LibCore/Socket.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
namespace Core {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -26,9 +26,9 @@
#include <AK/IPv4Address.h>
#include <AK/Types.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CUdpServer.h>
#include <LibCore/CUdpSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/UdpServer.h>
#include <LibCore/UdpSocket.h>
#include <stdio.h>
#include <sys/socket.h>

View file

@ -27,8 +27,8 @@
#pragma once
#include <AK/IPv4Address.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CUdpSocket.h>
#include <LibCore/UdpSocket.h>
#include <errno.h>
#include <sys/socket.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Badge.h>
#include <LibCore/CSocket.h>
#include <LibCore/Socket.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CUserInfo.h"
#include <LibCore/UserInfo.h>
#include <pwd.h>
#include <stdlib.h>
#include <unistd.h>