feat: reformatted code base to be more standard

This commit is contained in:
2021-03-10 22:01:13 +01:00
parent dc4bf71b5a
commit 586b8191b4
81 changed files with 431 additions and 338 deletions

View File

@@ -1,25 +1,23 @@
//
// Created by rick on 23-02-21.
//
#include <command.h>
#include "libk/kprint.h"
#include "libk/libk.h"
#include <types.h>
#include <libc/kprintf.h>
#include <stdio.h>
#include <stdbool.h>
#include <libc/string.h>
#include <mem/mem.h>
#include <mem/malloc.h>
#include <cpu/timer.h>
#include <drivers/pci.h>
#include <drivers/ide.h>
#include <fs/blockdev.h>
#include <fs/mbr.h>
#include <libc/readline.h>
#include <libc/libc.h>
#include <attributes.h>
#include <util/power.h>
#include <string.h>
#include <sys/types.h>
#include <myke/command.h>
#include <myke/libk/libk.h>
#include <myke/mem/mem.h>
#include <myke/mem/malloc.h>
#include <myke/cpu/timer.h>
#include <myke/drivers/pci.h>
#include <myke/drivers/ide.h>
#include <myke/fs/blockdev.h>
#include <myke/fs/mbr.h>
#include <readline/readline.h>
#include <myke/attributes.h>
#include <myke/util/power.h>
#define BOOTLOADER_NAME_MAX_LENGTH 64
#define CMDLINE_MAX_LENGTH 256
@@ -77,7 +75,7 @@ void print_bootinfo() {
void help(const char *arg) {
kprint("Available commands:\n");
printf("Available commands:\n");
int index = 0;
while (true) {
if (cmd_handlers[index].cmd == NULL) {