2012-09-28 18:36:46 -04:00
|
|
|
/*******************************************************************************
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-09-28 18:36:46 -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
|
|
|
|
2012-09-28 18:36:46 -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
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2012-09-28 18:36:46 -04:00
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
string.h
|
|
|
|
String operations.
|
|
|
|
|
2012-05-27 11:38:00 -04:00
|
|
|
*******************************************************************************/
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
#ifndef _STRING_H
|
|
|
|
#define _STRING_H 1
|
|
|
|
|
|
|
|
#include <features.h>
|
2012-09-07 06:50:09 -04:00
|
|
|
#include <strings.h>
|
2011-08-05 08:25:00 -04:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
@include(NULL.h)
|
|
|
|
@include(size_t.h)
|
|
|
|
@include(locale_t.h)
|
|
|
|
|
2012-11-08 12:52:49 -05: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);
|
2011-08-05 08:25:00 -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);
|
2012-01-14 11:20:17 -05:00
|
|
|
char* stpcpy(char* restrict, const char* restrict);
|
2012-11-08 12:37:17 -05:00
|
|
|
char* stpncpy(char* restrict, const char* restrict, size_t);
|
2011-08-05 08:25:00 -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*);
|
2012-01-08 15:59:21 -05:00
|
|
|
size_t strcspn(const char*, const char*);
|
2011-08-05 08:25:00 -04:00
|
|
|
char* strcpy(char* restrict, const char* restrict);
|
2012-03-04 10:54:53 -05:00
|
|
|
char* strdup(const char*);
|
2011-08-05 08:25:00 -04:00
|
|
|
size_t strlen(const char*);
|
2012-03-04 12:12:54 -05: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);
|
2012-03-04 11:00:59 -05: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*);
|
2012-01-08 15:59:21 -05:00
|
|
|
char* strtok(char* restrict, const char* restrict);
|
|
|
|
char* strtok_r(char* restrict, const char* restrict, char** restrict);
|
2011-08-05 08:25:00 -04:00
|
|
|
|
2012-09-28 18:53:50 -04:00
|
|
|
/* TODO: These are not implemented in sortix libc yet. */
|
2012-02-11 12:50:12 -05:00
|
|
|
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
|
2011-08-05 08:25:00 -04:00
|
|
|
int strcoll_l(const char*, const char*, locale_t);
|
|
|
|
char* strerror_l(int, locale_t);
|
|
|
|
int strerror_r(int, char*, size_t);
|
|
|
|
char* strsignal(int);
|
|
|
|
size_t strxfrm(char* restrict, const char* restrict, size_t);
|
|
|
|
size_t strxfrm_l(char* restrict, const char* restrict, size_t, locale_t);
|
|
|
|
#endif
|
|
|
|
|
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);
|
|
|
|
#endif
|
|
|
|
#if defined(_SOURCE_SOURCE) && __SORTIX_STDLIB_REDIRECTS
|
|
|
|
const char* strerror(int errnum) asm ("sortix_getenv");
|
|
|
|
#else
|
|
|
|
char* strerror(int errnum);
|
|
|
|
#endif
|
|
|
|
|
2011-08-05 08:25:00 -04:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|