sortix-mirror/libmaxsi/include/string.h

82 lines
2.7 KiB
C
Raw Normal View History

2011-08-05 12:25:00 +00:00
/******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
This file is part of LibMaxsi.
LibMaxsi is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
string.h
String operations.
******************************************************************************/
#ifndef _STRING_H
#define _STRING_H 1
#include <features.h>
__BEGIN_DECLS
@include(NULL.h)
@include(size_t.h)
@include(locale_t.h)
2012-01-09 00:38:44 +00:00
void* memchr(const void*, int, size_t);
2012-01-08 19:17:27 +00:00
int memcmp(const void*, const void*, size_t);
2011-08-05 12:25:00 +00:00
void* memcpy(void* restrict, const void* restrict, size_t);
2012-03-04 16:10:52 +00:00
void* memmove(void*, const void*, size_t);
void* memset(void*, int, size_t);
2012-01-14 16:20:17 +00:00
char* stpcpy(char* restrict, const char* restrict);
2011-08-05 12:25:00 +00:00
char* strcat(char* restrict, const char* restrict);
char* strchr(const char*, int);
2011-08-05 12:25:00 +00:00
int strcmp(const char*, const char*);
2012-01-14 15:44:48 +00:00
int strcoll(const char*, const char*);
size_t strcspn(const char*, const char*);
2011-08-05 12:25:00 +00:00
char* strcpy(char* restrict, const char* restrict);
2012-03-04 15:54:53 +00:00
char* strdup(const char*);
char* strerror(int);
2011-08-05 12:25:00 +00:00
size_t strlen(const char*);
int strncmp(const char*, const char*, size_t);
char* strncpy(char* restrict, const char* restrict, size_t);
char* strrchr(const char*, int);
size_t strspn(const char*, const char*);
char* strtok(char* restrict, const char* restrict);
char* strtok_r(char* restrict, const char* restrict, char** restrict);
2011-08-05 12:25:00 +00:00
/* TODO: These are not implemented in libmaxsi/sortix yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
2011-08-05 12:25:00 +00:00
void* memccpy(void* restrict, const void* restrict, int, size_t);
char* stpncpy(char* restrict, const char* restrict, size_t);
int strcoll_l(const char*, const char*, locale_t);
char* strerror_l(int, locale_t);
int strerror_r(int, char*, size_t);
char* strncat(char* restrict, const char* restrict, size_t);
char* strndup(const char*, size_t);
size_t strnlen(const char*, size_t);
char* strpbrk(const char*, const char*);
char* strsignal(int);
char* strstr(const char*, const char*);
size_t strxfrm(char* restrict, const char* restrict, size_t);
size_t strxfrm_l(char* restrict, const char* restrict, size_t, locale_t);
#endif
#if defined(_SORTIX_SOURCE) || defined(_GNU_SOURCE)
char* strchrnul(const char* str, int c);
#endif
2011-08-05 12:25:00 +00:00
__END_DECLS
#endif