1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:37:44 +00:00

Import a simple text editor I started working on.

This commit is contained in:
Andreas Kling 2018-12-04 00:27:16 +01:00
parent 405383fd2f
commit ca6847b5bb
59 changed files with 895 additions and 39 deletions

View file

@ -2,7 +2,7 @@
#include "ext2_fs.h"
#include "UnixTypes.h"
#include <AK/Bitmap.h>
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
#include <AK/kmalloc.h>
#include <AK/ktime.h>
#include <AK/kstdio.h>

View file

@ -2,7 +2,7 @@
#include "DiskDevice.h"
#include <AK/RetainPtr.h>
#include <AK/String.h>
#include <AK/AKString.h>
#include <AK/Types.h>
#include <stdio.h>

View file

@ -10,7 +10,7 @@
#include <AK/OwnPtr.h>
#include <AK/Retainable.h>
#include <AK/RetainPtr.h>
#include <AK/String.h>
#include <AK/AKString.h>
#include <AK/Function.h>
#include <AK/kstdio.h>

View file

@ -1,7 +1,7 @@
#include "FullDevice.h"
#include "Limits.h"
#include <LibC/errno_numbers.h>
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
#include <AK/kstdio.h>
FullDevice::FullDevice()

View file

@ -1,6 +1,6 @@
#include "NullDevice.h"
#include "Limits.h"
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
#include <AK/kstdio.h>
NullDevice::NullDevice()

View file

@ -1,6 +1,6 @@
#include "RandomDevice.h"
#include "Limits.h"
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
RandomDevice::RandomDevice()
: CharacterDevice(1, 8)

View file

@ -1,7 +1,7 @@
#include "SyntheticFileSystem.h"
#include "FileDescriptor.h"
#include <LibC/errno_numbers.h>
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
#ifndef SERENITY
typedef int InterruptDisabler;

View file

@ -3,7 +3,7 @@
#include <AK/HashMap.h>
#include <AK/OwnPtr.h>
#include <AK/RetainPtr.h>
#include <AK/String.h>
#include <AK/AKString.h>
#include <AK/Vector.h>
#include <AK/Function.h>
#include "InodeIdentifier.h"

View file

@ -1,6 +1,6 @@
#include "ZeroDevice.h"
#include "Limits.h"
#include <AK/StdLib.h>
#include <AK/StdLibExtras.h>
#include <AK/kstdio.h>
ZeroDevice::ZeroDevice()