SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
string.h
Go to the documentation of this file.
1#ifndef __STRING_H__
2#define __STRING_H__
3
4#include <types.h>
5
6void *memset(void *s, int c, size_t n);
7void *memcpy(void *dest, const void *src, size_t len);
8
9#endif /* __STRING_H__ */
void * memset(void *s, int c, size_t n)
Definition string.c:15
void * memcpy(void *dest, const void *src, size_t len)
Definition string.c:25