  | 
  
    armOS
    0.1.0
    
   Minimal ARM Operating System for the Raspberry Pi 					- Documentation generated for Pi 4. 
   | 
           
 | 
 
 
 
 
Go to the documentation of this file.
   22 void *
memset(
void *s, 
int c, 
size_t n);
 
   29 void *
memcpy(
void *dest, 
const void *src, 
size_t n);
 
   37 size_t strlen(
const char *s);
 
   46 int strcmp(
const char *s1, 
const char *s2);
 
   55 char *
strcpy(
char *dest, 
const char *src);
 
   65 char *
strcat(
char *dest, 
const char *src);
 
  
 
void * memset(void *s, int c, size_t n)
Definition: string.c:12
 
char * strcpy(char *dest, const char *src)
Definition: string.c:61
 
void * memcpy(void *dest, const void *src, size_t n)
Definition: string.c:25
 
int strcmp(const char *s1, const char *s2)
Definition: string.c:50
 
void strrev(char *s)
Definition: string.c:100
 
size_t strlen(const char *s)
Definition: string.c:39
 
char * strcat(char *dest, const char *src)
Definition: string.c:81