2026-07-06 22:13:57 -05:00
|
|
|
#ifndef RLIBC_STRING_H
|
|
|
|
|
#define RLIBC_STRING_H
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#include <stddef.h>
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
void *memcpy(void *restrict dest, const void *restrict src, size_t n);
|
|
|
|
|
void *memmove(void *dest, const void *src, size_t n);
|
|
|
|
|
void *memset(void *s, int c, size_t n);
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
size_t strlen(const char *s);
|
|
|
|
|
int strcmp(const char *s1, const char *s2);
|
|
|
|
|
char *strcpy(char *dest, const char *src);
|
2026-07-14 00:07:50 -05:00
|
|
|
char* strcat(char *dest, const char* src);
|
2026-06-28 17:58:58 -05:00
|
|
|
|
2026-07-06 22:13:57 -05:00
|
|
|
#endif
|