mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-02-12 05:45:19 -08:00
16 lines
503 B
C
16 lines
503 B
C
#ifndef CLASSICOS_KLIBC_STRING_H
|
|
#define CLASSICOS_KLIBC_STRING_H
|
|
|
|
#include <stddef.h>
|
|
|
|
extern int memcmp(const void *s1, const void *s2, size_t n);
|
|
extern void *memmove(void *dst, const void *src, size_t n);
|
|
extern void *memcpy(void *dst, const void *src, size_t n);
|
|
extern void *memset(void *dst, int c, size_t n);
|
|
|
|
extern size_t strlen(const char *s);
|
|
extern int strcmp(const char *s1, const char *s2);
|
|
extern char *strncpy(char *dst, const char *src, size_t n);
|
|
|
|
#endif // CLASSICOS_KLIBC_STRING_H
|