mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
33 lines
685 B
C
33 lines
685 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
void *memcpy(void *, const void *, size_t);
|
|
void *memset(void *, int, size_t);
|
|
void *memmove(void *, const void *, size_t);
|
|
int memcmp(const void *, const void *, size_t);
|
|
void *memchr(const void *, int, size_t);
|
|
|
|
unsigned long strlen(const char *str);
|
|
|
|
char *strchr(const char *, int);
|
|
char *strrchr(const char *, int);
|
|
|
|
char *strncpy(char *, const char *, size_t);
|
|
char *strcpy(char *, const char *);
|
|
|
|
size_t strcspn(const char *, const char *);
|
|
|
|
int strcmp(const char *, const char *);
|
|
int strncmp(const char *, const char *, size_t);
|
|
|
|
char *strstr(const char *, const char *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|