mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
Liba
This commit is contained in:
18
liba/include/string.h
Normal file
18
liba/include/string.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef LIBA_STRING_H
|
||||
#define LIBA_STRING_H
|
||||
|
||||
#include "private/macros.h"
|
||||
#include "private/types.h"
|
||||
|
||||
#define NULL 0
|
||||
|
||||
LIBA_BEGIN_DECLS
|
||||
|
||||
void * memcpy(void * dst, const void * src, size_t n);
|
||||
void * memset(void * b, int c, size_t len);
|
||||
|
||||
size_t strlen(const char * s);
|
||||
|
||||
LIBA_END_DECLS
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user