mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
19 lines
333 B
C
19 lines
333 B
C
#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);
|
|
int strcmp(const char *s1, const char *s2);
|
|
|
|
LIBA_END_DECLS
|
|
|
|
#endif
|