armOS  0.1.0
Minimal ARM Operating System for the Raspberry Pi - Documentation generated for Pi 4.
string.c File Reference

Implementation of some string.h functions. More...

#include <stddef.h>
#include <common/string.h>
Include dependency graph for string.c:

Functions

void * memset (void *s, int c, size_t n)
 
void * memcpy (void *dest, const void *src, size_t n)
 
size_t strlen (const char *s)
 
int strcmp (const char *s1, const char *s2)
 
char * strcpy (char *dest, const char *src)
 
char * strcat (char *dest, const char *src)
 
void strrev (char *s)
 

Detailed Description

Implementation of some string.h functions.

Implementation of a small subset of string.h.