summaryrefslogtreecommitdiff
path: root/src/kernel/include/libc.h
blob: cdf6dbc5b133ec256e4f4602b80df4ce88a96efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _STRING_H_
#define _STRING_H_
#include <stddef.h>

int strcmp(const char *str1, const char *str2);
int strncmp(const char *str1, const char *str2, size_t n);
void strcpy(char *dest, char *src);
void memcpy(void *dest, void *src, size_t n); //TODO
int memcmp(const void *s1, const void *s2, size_t n);
void bzero(const void *dest, size_t size);
int ceil(float n1);
#endif