2017-05-02 21:30:46 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-05-02 21:30:46 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-05-02 21:30:46 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-05-02 21:30:46 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-05-02 21:30:46 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-02 21:30:46 +00:00
|
|
|
*/
|
2017-05-23 05:16:08 +00:00
|
|
|
#ifndef __MES_STRING_H
|
|
|
|
#define __MES_STRING_H 1
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#if SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
2017-07-23 13:49:03 +00:00
|
|
|
#undef __MES_STRING_H
|
2017-05-02 21:30:46 +00:00
|
|
|
#include_next <string.h>
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#else // ! SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2019-06-01 06:44:18 +00:00
|
|
|
#include <sys/types.h>
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2019-05-18 11:27:42 +00:00
|
|
|
void *memchr (void const *block, int c, size_t size);
|
2017-07-24 10:43:04 +00:00
|
|
|
void *memcpy (void *dest, void const *src, size_t n);
|
2017-07-24 10:56:56 +00:00
|
|
|
void *memmove (void *dest, void const *src, size_t n);
|
2017-07-24 10:57:34 +00:00
|
|
|
void *memset (void *s, int c, size_t n);
|
2019-05-18 11:27:42 +00:00
|
|
|
void *memchr (void const *block, int c, size_t size);
|
2017-07-24 10:53:51 +00:00
|
|
|
int memcmp (void const *s1, void const *s2, size_t n);
|
2019-06-08 13:36:22 +00:00
|
|
|
void *memmem (void const *haystack, int haystack_len, void const *needle, int needle_len);
|
2017-07-28 06:07:41 +00:00
|
|
|
char *strcat (char *dest, char const *src);
|
2017-07-24 11:46:32 +00:00
|
|
|
char *strchr (char const *s, int c);
|
2018-06-19 18:23:38 +00:00
|
|
|
int strcasecmp (char const *s1, char const *s2);
|
2019-05-18 11:27:42 +00:00
|
|
|
int strcmp (char const *, char const *);
|
2017-05-08 19:15:53 +00:00
|
|
|
char *strcpy (char *dest, char const *src);
|
2019-05-18 11:27:42 +00:00
|
|
|
size_t strlen (char const *);
|
2018-06-02 09:41:06 +00:00
|
|
|
char *strncpy (char *to, char const *from, size_t size);
|
2019-05-18 11:27:42 +00:00
|
|
|
int strncmp (char const *, char const *, size_t);
|
2017-07-24 16:16:21 +00:00
|
|
|
char *strrchr (char const *s, int c);
|
2017-07-24 17:54:32 +00:00
|
|
|
char *strstr (char const *haystack, char const *needle);
|
2019-05-18 11:27:42 +00:00
|
|
|
char *strlwr (char *string);
|
|
|
|
char *strupr (char *string);
|
2018-08-22 05:23:27 +00:00
|
|
|
|
2017-07-24 16:16:21 +00:00
|
|
|
|
2018-06-03 16:54:26 +00:00
|
|
|
char *strerror (int errnum);
|
|
|
|
void perror (char const *message);
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#endif // ! SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2017-05-23 05:16:08 +00:00
|
|
|
#endif // __MES_STRING_H
|