9#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRING_H_
10#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRING_H_
25extern size_t strnlen(
const char *
s,
size_t maxlen);
26extern int strcmp(
const char *s1,
const char *s2);
27extern int strncmp(
const char *s1,
const char *s2,
size_t n);
33extern char *
strstr(
const char *
s,
const char *find);
36extern size_t strcspn(
const char *
s,
const char *reject);
38extern int memcmp(
const void *m1,
const void *m2,
size_t n);
39extern void *
memmove(
void *
d,
const void *
s,
size_t n);
42extern void *
memset(
void *buf,
int c,
size_t n);
43extern void *
memchr(
const void *
s,
int c,
size_t n);
irp nz macro MOVR cc s mov cc s endm endr irp aw macro LDR aa s
Definition: asm-macro-32-bit-gnu.h:17
irp nz macro MOVR cc d
Definition: asm-macro-32-bit-gnu.h:11
#define ZRESTRICT
Definition: common.h:31
state
Definition: http_parser_state.h:30
static int accept(int sock, struct sockaddr *addr, socklen_t *addrlen)
Definition: socket.h:56
char c
Definition: printk.c:71
int strncmp(const char *s1, const char *s2, size_t n)
void * memchr(const void *s, int c, size_t n)
int strcmp(const char *s1, const char *s2)
char * strtok_r(char *str, const char *sep, char **state)
char * strncat(char *ZRESTRICT dest, const char *ZRESTRICT src, size_t n)
void * memset(void *buf, int c, size_t n)
char * strcpy(char *ZRESTRICT d, const char *ZRESTRICT s)
void * memmove(void *d, const void *s, size_t n)
char * strcat(char *ZRESTRICT dest, const char *ZRESTRICT src)
size_t strspn(const char *s, const char *accept)
size_t strlen(const char *s)
char * strncpy(char *ZRESTRICT d, const char *ZRESTRICT s, size_t n)
char * strchr(const char *s, int c)
int memcmp(const void *m1, const void *m2, size_t n)
char * strstr(const char *s, const char *find)
size_t strcspn(const char *s, const char *reject)
void * memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n)
char * strrchr(const char *s, int c)
size_t strnlen(const char *s, size_t maxlen)