summaryrefslogtreecommitdiff
path: root/lib/string/string.h
blob: bd43b345f8ecfc0e39efea7822e2392897a6fdcf (plain)
1
2
3
4
5
6
7
8
9
#ifndef STRING_H
#define STRING_H


void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size);
int strcmp(char *str1, char *str2);
int strcmp_l(char *str1, char *str2, int length);

#endif