2012-09-28 18:36:46 -04:00
|
|
|
/*******************************************************************************
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-06-24 13:11:46 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04: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 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04: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 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04: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 08:25:00 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
string.h
|
|
|
|
String operations.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-05-27 11:38:00 -04:00
|
|
|
*******************************************************************************/
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-06-24 13:11:46 -04:00
|
|
|
#ifndef INCLUDE_STRING_H
|
|
|
|
#define INCLUDE_STRING_H
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-10-13 07:04:27 -04:00
|
|
|
#include <sys/cdefs.h>
|
2013-09-23 10:37:33 -04:00
|
|
|
|
|
|
|
#include <sys/__/types.h>
|
|
|
|
|
2011-08-05 08:25:00 -04:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2013-12-26 19:44:03 -05: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
|
|
|
|
|
|
|
|
#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
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2013-07-12 08:23:26 -04:00
|
|
|
int ffs(int);
|
|
|
|
int ffsl(long int);
|
|
|
|
int ffsll(long long int);
|
2013-04-07 11:27:11 -04:00
|
|
|
void* memccpy(void* __restrict, const void* __restrict, int, size_t);
|
2012-01-08 19:38:44 -05:00
|
|
|
void* memchr(const void*, int, size_t);
|
2012-01-08 14:17:27 -05:00
|
|
|
int memcmp(const void*, const void*, size_t);
|
2013-04-07 11:27:11 -04:00
|
|
|
void* memcpy(void* __restrict, const void* __restrict, size_t);
|
2012-03-04 11:10:52 -05:00
|
|
|
void* memmove(void*, const void*, size_t);
|
Implemented large parts of the stdio(3), including fprintf.
Made FILE an interface to various backends. This allows application writers
to override the standard FILE API functions with their own backends. This
is highly unportable - it'd be nice if a real standard existed for this.
glibc already does something like this internally, but AFAIK you can't hook
into it.
Added fdopen(3), fopen(3), fregister(3), funregister(3), fread(3),
fwrite(3), fseek(3), clearerr(3), ferror(3), feof(3), rewind(3), ftell(3),
fflush(3), fclose(3), fileno(3), fnewline(3), fcloseall(3), memset(3),
stdio(3), vfprintf(3), fprintf(3), and vprintf(3).
Added a file-descriptor backend to the FILE API.
fd's {0, 1, 2} are now initialized as stdin, stdout, and stderr when the
standard library initializes.
fcloseall(3) is now called on exit(3).
decl/intn_t_.h now @include(size_t.h) instead of declaring it itself.
Added <stdint.h>.
The following programs now flush stdout: cat(1), clear(1), editor(1),
init(1), mxsh(1).
printf(3) is now hooked up against vprintf(3), while Maxsi::PrintF
remains using the system call, for now.
2011-12-23 22:08:10 -05:00
|
|
|
void* memset(void*, int, size_t);
|
2013-04-07 11:27:11 -04:00
|
|
|
char* stpcpy(char* __restrict, const char* __restrict);
|
|
|
|
char* stpncpy(char* __restrict, const char* __restrict, size_t);
|
2013-07-12 08:15:31 -04:00
|
|
|
int strcasecmp(const char* a, const char* b);
|
2013-04-07 11:27:11 -04:00
|
|
|
char* strcat(char* __restrict, const char* __restrict);
|
2012-01-08 16:26:32 -05:00
|
|
|
char* strchr(const char*, int);
|
2011-08-05 08:25:00 -04:00
|
|
|
int strcmp(const char*, const char*);
|
2012-01-14 10:44:48 -05:00
|
|
|
int strcoll(const char*, const char*);
|
2013-07-11 14:25:46 -04:00
|
|
|
int strcoll_l(const char*, const char*, locale_t);
|
2012-01-08 15:59:21 -05:00
|
|
|
size_t strcspn(const char*, const char*);
|
2013-04-07 11:27:11 -04:00
|
|
|
char* strcpy(char* __restrict, const char* __restrict);
|
2012-03-04 10:54:53 -05:00
|
|
|
char* strdup(const char*);
|
2013-07-11 16:33:54 -04:00
|
|
|
int strerror_r(int, char*, size_t);
|
2013-07-11 17:13:19 -04:00
|
|
|
size_t strlcat(char* __restrict, const char* __restrict, size_t);
|
2013-07-11 16:22:21 -04:00
|
|
|
size_t strlcpy(char* __restrict, const char* __restrict, size_t);
|
2011-08-05 08:25:00 -04:00
|
|
|
size_t strlen(const char*);
|
2013-07-12 08:15:31 -04:00
|
|
|
int strncasecmp(const char* a, const char* b, size_t n);
|
2013-04-07 11:27:11 -04:00
|
|
|
char* strncat(char* __restrict, const char* __restrict, size_t);
|
2011-08-05 08:25:00 -04:00
|
|
|
int strncmp(const char*, const char*, size_t);
|
2013-04-07 11:27:11 -04:00
|
|
|
char* strncpy(char* __restrict, const char* __restrict, size_t);
|
2012-11-08 12:50:53 -05:00
|
|
|
char* strndup(const char*, size_t);
|
2012-03-10 17:04:49 -05:00
|
|
|
size_t strnlen(const char*, size_t);
|
2012-03-04 11:44:24 -05:00
|
|
|
char* strpbrk(const char*, const char*);
|
2012-01-08 16:26:32 -05:00
|
|
|
char* strrchr(const char*, int);
|
2012-01-08 15:59:21 -05:00
|
|
|
size_t strspn(const char*, const char*);
|
2012-03-04 11:20:42 -05:00
|
|
|
char* strstr(const char*, const char*);
|
2013-04-07 11:27:11 -04:00
|
|
|
char* strtok(char* __restrict, const char* __restrict);
|
|
|
|
char* strtok_r(char* __restrict, const char* __restrict, char** __restrict);
|
2013-06-24 13:11:46 -04:00
|
|
|
int strverscmp(const char*, const char*);
|
2013-04-07 11:27:11 -04:00
|
|
|
size_t strxfrm(char* __restrict, const char* __restrict, size_t);
|
2013-07-11 14:29:11 -04:00
|
|
|
size_t strxfrm_l(char* __restrict, const char* __restrict, size_t, locale_t);
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-02-11 12:50:12 -05:00
|
|
|
#if defined(_SORTIX_SOURCE) || defined(_GNU_SOURCE)
|
2012-01-08 16:26:32 -05:00
|
|
|
char* strchrnul(const char* str, int c);
|
|
|
|
#endif
|
|
|
|
|
2012-05-27 11:38:00 -04:00
|
|
|
#if defined(_SORTIX_SOURCE)
|
|
|
|
const char* sortix_strerror(int errnum);
|
2013-07-11 16:33:54 -04:00
|
|
|
const char* sortix_strerror_l(int, locale_t);
|
2012-11-08 13:56:29 -05:00
|
|
|
const char* sortix_strsignal(int signum);
|
2012-05-27 11:38:00 -04:00
|
|
|
#endif
|
|
|
|
#if defined(_SOURCE_SOURCE) && __SORTIX_STDLIB_REDIRECTS
|
2014-04-28 07:50:11 -04:00
|
|
|
const char* strerror(int errnum) __asm__ ("sortix_strerror");
|
|
|
|
const char* strerror_l(int, locale_t) __asm__ ("sortix_strerror_l");
|
|
|
|
const char* strsignal(int signum) __asm__ ("sortix_strsignal");
|
2012-05-27 11:38:00 -04:00
|
|
|
#else
|
|
|
|
char* strerror(int errnum);
|
2013-07-11 16:33:54 -04:00
|
|
|
char* strerror_l(int, locale_t);
|
2012-11-08 13:56:29 -05:00
|
|
|
char* strsignal(int signum);
|
2012-05-27 11:38:00 -04:00
|
|
|
#endif
|
|
|
|
|
2013-07-12 13:13:55 -04: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); \
|
|
|
|
}))
|
|
|
|
|
2011-08-05 08:25:00 -04:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|