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#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <types.h>
9
10void *memset(void *s, int c, size_t n);
11void *memcpy(void *dest, const void *src, size_t len);
12
13#ifdef __cplusplus
14}
15#endif
16
17#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