Initial commit
This commit is contained in:
19
kernel/libc/libc.h
Normal file
19
kernel/libc/libc.h
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* libc.h
|
||||
*
|
||||
* Created on: Oct 11, 2018
|
||||
* Author: rick
|
||||
*/
|
||||
|
||||
#ifndef KERNEL_LIBC_LIBC_H_
|
||||
#define KERNEL_LIBC_LIBC_H_
|
||||
|
||||
int memcpy(char *dst, char *src, int amount);
|
||||
|
||||
int memset(char *dst, char data, int amount);
|
||||
|
||||
int itoa(int i, char *target);
|
||||
|
||||
int strlen(char *str);
|
||||
|
||||
#endif /* KERNEL_LIBC_LIBC_H_ */
|
||||
Reference in New Issue
Block a user