summaryrefslogtreecommitdiff
path: root/include/libc/string.h
blob: fa95a53126cfc22c6469e62961c47132c20d700b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef LIBC_STRING_H
#define LIBC_STRING_H

#include "stddef.h"

char* strchr(const char* s, int c);
size_t strlen(const char* s);
void* memcpy(void* s1, const void* s2, size_t n);

void* memset(void* ptr, int val, size_t size);
int strcmp(const char* str1, const char* str2);
char* strcpy(char* dst, const char* src);
void* memmove(void* dst, const void* src, size_t size);

#endif