Files
Upsilon/liba/include/string.h
Romain Goyet 3ef709502e [liba] Add memcmp to strings.h
Change-Id: Ied4281e588d423e2b00dced10018a690455544d5
2017-08-04 17:56:23 +02:00

20 lines
480 B
C

#ifndef LIBA_STRING_H
#define LIBA_STRING_H
#include "private/macros.h"
#include <stddef.h>
LIBA_BEGIN_DECLS
int memcmp(const void * s1, const void * s2, size_t n);
void * memcpy(void * dst, const void * src, size_t n);
void * memmove(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);
size_t strlcpy(char * dst, const char * src, size_t len);
LIBA_END_DECLS
#endif