hippOS/std/std.h

14 lines
272 B
C
Raw Normal View History

#ifndef _STD_H
#define _STD_H
#include <stddef.h>
#include <stdint.h>
size_t strlen(const char* str);
int memcmp(const void *av, const void *bv, size_t size);
void* memset(void *bufv, int value, size_t size);
void *memcpy(void *destv, void *srcv, size_t size);
#endif