mirror of
https://github.com/zeldaret/st
synced 2026-05-23 15:01:41 -04:00
c98c03de39
* match wstring.c * match math_api.c, mbstring.c, mem.c and mem_funcs.c * more progress * build issues * fix non-matching issues * reorganise files * match fdlibm (+ libc progress) * fix jp build * solved some non-matchings and progress * removed types.h usage in libc * match data and add missing delinks for jp
21 lines
381 B
C
21 lines
381 B
C
#ifndef _C_MEM_H
|
|
#define _C_MEM_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *memcpy(void *dst, const void *src, int n);
|
|
void *memmove(void *dst, const void *src, size_t len);
|
|
void *memset(void *dest, int val, int n);
|
|
void *memchr(const void *src, int val, int n);
|
|
int memcmp(const void *src1, const void *src2, int n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|