#ifndef RIVOS_STRING_H #define RIVOS_STRING_H #include "types.h" /** * This is not a safe function, check dst size */ char *kstrcpy(char *dst, const char *src); size_t kstrlen(const char *str); int kstrcmp(const char *s1, const char *s2); #endif