mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
32 lines
820 B
C
32 lines
820 B
C
/*
|
|
* \brief Mini C string functions
|
|
* \author Christian Helmuth
|
|
* \date 2008-07-24
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2008-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__MINI_C__STRING_H_
|
|
#define _INCLUDE__MINI_C__STRING_H_
|
|
|
|
#include <sys/types.h>
|
|
|
|
void *memcpy(void *dest, const void *src, size_t n);
|
|
void *memset(void *s, int c, size_t n);
|
|
int memcmp(const void *s1, const void *s2, size_t n);
|
|
|
|
size_t strlen(const char *s);
|
|
int strcmp(const char *s1, const char *s2);
|
|
char *strcpy(char *dest, const char *src);
|
|
char *strncpy(char *dest, const char *src, size_t n);
|
|
char *strcat(char *dest, const char *src);
|
|
|
|
char *strerror(int errnum);
|
|
|
|
#endif /* _INCLUDE__MINI_C__STRING_H_ */
|