Files
Upsilon/liba/include/string.h
Romain Goyet 89c34d8251 [liba] strcmp
2015-09-29 23:07:19 +02:00

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