-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathstring.h
34 lines (26 loc) · 908 Bytes
/
string.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// C11 7.24
#pragma once
#include "compiler.h"
#include <stddef.h>
#ifdef __cplusplus
#define XV6_STRING_NOEXCEPT noexcept
#else
#define XV6_STRING_NOEXCEPT
#endif
BEGIN_DECLS
void *memcpy(void *s1, const void *s2, size_t n) XV6_STRING_NOEXCEPT;
void *memmove(void *s1, const void *s2, size_t n) XV6_STRING_NOEXCEPT;
int memcmp(const void *s1, const void *s2, size_t n);
void *memset(void *s, int c, size_t n);
void *memchr(const void *s, int c, size_t n);
char *strchr(const char *s, int c);
size_t strlen(const char *s);
char* strcpy(char*, const char*);
char* strncpy(char *s, const char *t, size_t n) XV6_STRING_NOEXCEPT;
int strcmp(const char*, const char*);
int strncmp(const char *p, const char *q, size_t n);
char *strstr(const char *haystack, const char *needle);
// Not C11
void *mempcpy(void *dest, const void *src, size_t n);
char *safestrcpy(char *s, const char *t, size_t n);
END_DECLS