sortix-mirror/libc/include/string.h

174 lines
6.1 KiB
C
Raw Normal View History

2012-09-28 22:36:46 +00:00
/*******************************************************************************
2011-08-05 12:25:00 +00:00
2014-04-02 22:06:21 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013, 2014.
2011-08-05 12:25:00 +00:00
This file is part of the Sortix C Library.
2011-08-05 12:25:00 +00:00
The Sortix C Library 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.
2011-08-05 12:25:00 +00:00
The Sortix C Library 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.
2011-08-05 12:25:00 +00:00
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
2011-08-05 12:25:00 +00:00
string.h
String operations.
2011-08-05 12:25:00 +00:00
*******************************************************************************/
2011-08-05 12:25:00 +00:00
2013-06-24 17:11:46 +00:00
#ifndef INCLUDE_STRING_H
#define INCLUDE_STRING_H
2011-08-05 12:25:00 +00:00
#include <sys/cdefs.h>
#include <sys/__/types.h>
2011-08-05 12:25:00 +00:00
__BEGIN_DECLS
2013-12-27 00:44:03 +00:00
#ifndef NULL
#define __need_NULL
#include <stddef.h>
#endif
#ifndef __size_t_defined
#define __size_t_defined
#define __need_size_t
#include <stddef.h>
#endif
2014-04-02 22:06:21 +00:00
#if __USE_SORTIX || 2008 <= __USE_POSIX
2013-12-27 00:44:03 +00:00
#ifndef __locale_t_defined
#define __locale_t_defined
/* TODO: figure out what this does and typedef it properly. This is just a
temporary assignment. */
typedef int __locale_t;
typedef __locale_t locale_t;
#endif
2014-04-02 22:06:21 +00:00
#endif
2011-08-05 12:25:00 +00:00
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);
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);
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*);
char* strcpy(char* __restrict, const char* __restrict);
2014-04-02 22:06:21 +00:00
size_t strcspn(const char*, const char*);
#if __USE_SORTIX && __SORTIX_STDLIB_REDIRECTS
const char* strerror(int errnum) __asm__ ("sortix_strerror");
#else
char* strerror(int errnum);
#endif
2011-08-05 12:25:00 +00:00
size_t strlen(const char*);
char* strncat(char* __restrict, const char* __restrict, size_t);
2011-08-05 12:25:00 +00:00
int strncmp(const char*, const char*, size_t);
char* strncpy(char* __restrict, const char* __restrict, size_t);
2012-03-04 16:44:24 +00:00
char* strpbrk(const char*, const char*);
char* strrchr(const char*, int);
size_t strspn(const char*, const char*);
2012-03-04 16:20:42 +00:00
char* strstr(const char*, const char*);
char* strtok(char* __restrict, const char* __restrict);
size_t strxfrm(char* __restrict, const char* __restrict, size_t);
2011-08-05 12:25:00 +00:00
2014-04-02 22:06:21 +00:00
/* Functions from early POSIX. */
#if __USE_SORTIX || __USE_POSIX
int strcasecmp(const char* a, const char* b);
int strncasecmp(const char* a, const char* b, size_t n);
#endif
/* Functions from early XOPEN. */
#if __USE_SORTIX || __USE_XOPEN
void* memccpy(void* __restrict, const void* __restrict, int, size_t);
#endif
/* Functions from XOPEN 420 gone into POSIX 2008. */
#if __USE_SORTIX || 420 <= __USE_XOPEN || 200809L <= __USE_POSIX
char* strdup(const char*);
#endif
2014-04-02 22:06:21 +00:00
/* Functions from POSIX 2001. */
#if __USE_SORTIX || 200112L <= __USE_POSIX
int ffs(int);
#if __USE_SORTIX && __SORTIX_STDLIB_REDIRECTS
const char* strerror_l(int, locale_t) __asm__ ("sortix_strerror_l");
#else
2013-07-11 20:33:54 +00:00
char* strerror_l(int, locale_t);
2014-04-02 22:06:21 +00:00
#endif
int strerror_r(int, char*, size_t);
char* strtok_r(char* __restrict, const char* __restrict, char** __restrict);
#endif
/* Functions from POSIX 2008. */
#if __USE_SORTIX || 200809L <= __USE_POSIX
char* stpcpy(char* __restrict, const char* __restrict);
char* stpncpy(char* __restrict, const char* __restrict, size_t);
int strcoll_l(const char*, const char*, locale_t);
char* strndup(const char*, size_t);
size_t strnlen(const char*, size_t);
#if __USE_SORTIX && __SORTIX_STDLIB_REDIRECTS
const char* strsignal(int signum) __asm__ ("sortix_strsignal");
#else
2012-11-08 18:56:29 +00:00
char* strsignal(int signum);
#endif
2014-04-02 22:06:21 +00:00
size_t strxfrm_l(char* __restrict, const char* __restrict, size_t, locale_t);
#endif
/* Functions copied from elsewhere. */
#if __USE_SORTIX
2014-06-20 16:29:15 +00:00
void explicit_bzero(void*, size_t);
2014-04-02 22:06:21 +00:00
int ffsl(long int);
2014-06-14 14:11:37 +00:00
void* memrchr(const void*, int, size_t);
2014-04-02 22:06:21 +00:00
/* TODO: strcasecmp_l */
char* strchrnul(const char* str, int c);
size_t strlcat(char* __restrict, const char* __restrict, size_t);
size_t strlcpy(char* __restrict, const char* __restrict, size_t);
/* TODO: strncasecmp_l */
2014-07-09 21:44:10 +00:00
char* strsep(char**, const char*);
2014-04-02 22:06:21 +00:00
int strverscmp(const char*, const char*);
2014-06-20 16:20:34 +00:00
int timingsafe_memcmp(const void*, const void*, size_t);
2014-04-02 22:06:21 +00:00
#endif
2014-04-02 22:06:21 +00:00
/* Functions that are Sortix extensions. */
#if __USE_SORTIX
int ffsll(long long int);
const char* sortix_strerror(int errnum);
const char* sortix_strerror_l(int, locale_t);
const char* sortix_strsignal(int signum);
#endif
#if __USE_SORTIX
2013-07-12 17:13:55 +00:00
/* Duplicate S, returning an identical alloca'd string. */
#define strdupa(s) \
(__extension__ \
({ \
const char* __old = (s); \
size_t __len = strlen(__old) + 1; \
char* __new = (char*) __builtin_alloca(__len); \
(char*) memcpy(__new, __old, __len); \
}))
/* Return an alloca'd copy of at most N bytes of string. */
#define strndupa(s, n) \
(__extension__ \
({ \
__const char* __old = (s); \
size_t __len = strnlen(__old, (n)); \
char* __new = (char*) __builtin_alloca(__len + 1); \
__new[__len] = '\0'; \
(char*) memcpy(__new, __old, __len); \
}))
2014-04-02 22:06:21 +00:00
#endif
2013-07-12 17:13:55 +00:00
2011-08-05 12:25:00 +00:00
__END_DECLS
#endif