mirror of
https://github.com/encounter/osdev.git
synced 2026-03-30 11:33:54 -07:00
295ec24a65
Initial work on shell history using arrow keys
11 lines
180 B
C
11 lines
180 B
C
#pragma once
|
|
|
|
#include <common.h>
|
|
|
|
void *malloc(size_t size);
|
|
|
|
void *realloc(void *ptr, size_t new_size);
|
|
|
|
void free(void *ptr);
|
|
|
|
void print_chunk_debug(void *ptr, bool recursive); |