2009-06-16 20:54:44 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
2023-03-22 21:23:14 +00:00
|
|
|
// Copyright (C) 2023 University of California
|
2009-06-16 20:54:44 +00:00
|
|
|
//
|
|
|
|
// BOINC 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.
|
|
|
|
//
|
|
|
|
// BOINC 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 BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-10-01 07:36:00 +00:00
|
|
|
// declare replacement string functions for platforms that lack them
|
2009-06-16 20:54:44 +00:00
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_STR_REPLACE_H
|
|
|
|
#define BOINC_STR_REPLACE_H
|
2009-06-16 20:54:44 +00:00
|
|
|
|
2017-02-16 05:01:55 +00:00
|
|
|
#ifndef _WIN32
|
2013-06-07 00:31:46 +00:00
|
|
|
#include <sys/types.h>
|
2012-04-30 23:53:57 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#endif
|
|
|
|
|
2018-01-20 04:51:40 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2016-02-02 04:23:18 +00:00
|
|
|
// strlcpy and strlcat guarantee NULL-terminated result
|
|
|
|
// (unlike strncpy and strncat)
|
|
|
|
//
|
2011-09-27 19:45:27 +00:00
|
|
|
#if !HAVE_STRLCPY
|
2009-06-16 20:54:44 +00:00
|
|
|
extern size_t strlcpy(char*, const char*, size_t);
|
|
|
|
#endif
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
#if !HAVE_STRLCAT
|
2009-06-16 20:54:44 +00:00
|
|
|
extern size_t strlcat(char *dst, const char *src, size_t size);
|
|
|
|
#endif
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
#if !HAVE_STRCASESTR
|
2009-07-20 21:53:56 +00:00
|
|
|
extern const char *strcasestr(const char *s1, const char *s2);
|
2009-06-16 20:54:44 +00:00
|
|
|
#endif
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
#if !HAVE_STRCASECMP
|
2010-08-27 18:22:59 +00:00
|
|
|
inline int strcasecmp(const char* s1, const char* s2) {
|
|
|
|
while (*s1 && *s2) {
|
|
|
|
char c1 = tolower(*s1++);
|
|
|
|
char c2 = tolower(*s2++);
|
2015-04-10 18:20:19 +00:00
|
|
|
if (c1 < c2) return -1;
|
|
|
|
if (c1 > c2) return 1;
|
2010-08-27 18:22:59 +00:00
|
|
|
}
|
2015-04-10 18:20:19 +00:00
|
|
|
if (*s1) return 1;
|
|
|
|
if (*s2) return -1;
|
2010-08-27 18:22:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-16 20:54:44 +00:00
|
|
|
#endif
|