summaryrefslogtreecommitdiff
path: root/src/include/libc.h
blob: c7ccda766e59fcebfcad305e2781effb7c5e6559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _STRING_H_
#define _STRING_H_
#include <stddef.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);
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);
#endif