metal-cos/include/string.h
2014-07-06 00:07:32 -07:00

16 lines
310 B
C

#ifndef __STRING_H__
#define __STRING_H__
#include <stdint.h>
void *memcpy(void *dst, const void *src, size_t len);
void *memset(void *dst, int c, size_t len);
int strcmp(const char *s1, const char *s2);
char *strcpy(char *to, const char *from);
size_t strlen(const char *str);
#endif /* __STRING_H__ */