hippOS/std/std.h
hippoz 4cc8bb5ec7
Initial commit:
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.
2022-02-22 14:01:39 +02:00

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