summaryrefslogtreecommitdiff
path: root/src/include/libc.h
blob: d0789cfdf698b8d01f23a268c46d11b5fa0d57bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _STRING_H_
#define _STRING_H_
#include <stddef.h>
#include <stdint.h>

void *strcpy(char *dest, char *src);
void *memcpy(void *dest, void *src, size_t n); //TODO
void *bzero(const void *dest, size_t size);
void *memset(void *s, char c, size_t n);
size_t strlen(const char *s);
int strcmp(const char *str1, const char *str2);
int strncmp(const char *str1, const char *str2, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);
int ceil(double n1);
int round(double n1);

#endif