armOS  0.1.0
Minimal ARM Operating System for the Raspberry Pi - Documentation generated for Pi 4.
string.h
Go to the documentation of this file.
1 
12 #include <stddef.h>
13 
14 #ifndef STRING_H
15 #define STRING_H
16 
22 void *memset(void *s, int c, size_t n);
23 
29 void *memcpy(void *dest, const void *src, size_t n);
30 
37 size_t strlen(const char *s);
38 
46 int strcmp(const char *s1, const char *s2);
47 
55 char *strcpy(char *dest, const char *src);
56 
65 char *strcat(char *dest, const char *src);
66 
72 void strrev(char *s);
73 
77 #endif
memset
void * memset(void *s, int c, size_t n)
Definition: string.c:12
strcpy
char * strcpy(char *dest, const char *src)
Definition: string.c:61
memcpy
void * memcpy(void *dest, const void *src, size_t n)
Definition: string.c:25
strcmp
int strcmp(const char *s1, const char *s2)
Definition: string.c:50
strrev
void strrev(char *s)
Definition: string.c:100
strlen
size_t strlen(const char *s)
Definition: string.c:39
strcat
char * strcat(char *dest, const char *src)
Definition: string.c:81