4cc8bb5ec7
Barebones kernel that can print to a "tty". Has some basic functions like memcpy, strlen, etc. A GDT is also present, however it has not yet been properly tested. The folder structure is currently not optimal or well organized.
13 lines
272 B
C
13 lines
272 B
C
#ifndef _STD_H
|
|
#define _STD_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
size_t strlen(const char* str);
|
|
int memcmp(const void *av, const void *bv, size_t size);
|
|
void* memset(void *bufv, int value, size_t size);
|
|
void *memcpy(void *destv, void *srcv, size_t size);
|
|
|
|
#endif
|
|
|