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

@@ -2,14 +2,17 @@
// Created by rick on 06-02-21.
//
#include <libc/kprintf.h>
#include <libc/libc.h>
#include <libc/string.h>
#include <string.h>
#include <stdarg.h>
#include <libk/kprint.h>
#include <libk/libk.h>
#include <types.h>
const char* printf_null_str = "NULL";
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <myke/libk/kprint.h>
#include <myke/libk/libk.h>
const char *printf_null_str = "NULL";
/*
* Integer to string
*/