2003-01-09 13:36:05 +01:00
|
|
|
/* stringhelp.h
|
2006-10-02 13:54:35 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2003,
|
2009-08-25 22:19:37 +02:00
|
|
|
* 2006, 2007, 2009 Free Software Foundation, Inc.
|
2015-03-12 13:03:50 +01:00
|
|
|
* 2015 g10 Code GmbH
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* This file is part of GnuPG.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2017-02-24 13:48:28 +01:00
|
|
|
* GnuPG is free software; you can redistribute and/or modify this
|
|
|
|
* part of GnuPG under the terms of either
|
2011-09-30 12:52:11 +02:00
|
|
|
*
|
|
|
|
* - 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.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* GnuPG is distributed in the hope that it will be useful, but
|
2006-10-02 13:54:35 +02:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
2016-11-05 12:02:19 +01:00
|
|
|
* if not, see <https://www.gnu.org/licenses/>.
|
2003-01-09 13:36:05 +01:00
|
|
|
*/
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#ifndef GNUPG_COMMON_STRINGHELP_H
|
|
|
|
#define GNUPG_COMMON_STRINGHELP_H
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2016-08-11 20:46:51 +02:00
|
|
|
#include <stdint.h>
|
2003-01-09 13:36:05 +01:00
|
|
|
#include "types.h"
|
|
|
|
|
2014-02-26 16:18:45 +01:00
|
|
|
/*-- stringhelp.c --*/
|
2013-02-21 20:25:12 +01:00
|
|
|
char *has_leading_keyword (const char *string, const char *keyword);
|
|
|
|
|
2005-06-16 10:12:03 +02:00
|
|
|
const char *memistr (const void *buf, size_t buflen, const char *sub);
|
2003-01-09 13:36:05 +01:00
|
|
|
char *mem2str( char *, const void *, size_t);
|
|
|
|
char *trim_spaces( char *string );
|
|
|
|
char *trim_trailing_spaces( char *string );
|
|
|
|
unsigned int trim_trailing_chars( unsigned char *line, unsigned len,
|
|
|
|
const char *trimchars);
|
|
|
|
unsigned int trim_trailing_ws( unsigned char *line, unsigned len );
|
2003-06-18 21:56:13 +02:00
|
|
|
size_t length_sans_trailing_chars (const unsigned char *line, size_t len,
|
|
|
|
const char *trimchars );
|
|
|
|
size_t length_sans_trailing_ws (const unsigned char *line, size_t len);
|
2003-01-09 13:36:05 +01:00
|
|
|
|
|
|
|
|
2006-04-21 14:56:40 +02:00
|
|
|
char *make_basename(const char *filepath, const char *inputpath);
|
2003-01-09 13:36:05 +01:00
|
|
|
char *make_dirname(const char *filepath);
|
2015-07-26 12:50:16 +02:00
|
|
|
char *make_filename( const char *first_part, ... ) GPGRT_ATTR_SENTINEL(0);
|
|
|
|
char *make_filename_try (const char *first_part, ... ) GPGRT_ATTR_SENTINEL(0);
|
|
|
|
char *make_absfilename (const char *first_part, ...) GPGRT_ATTR_SENTINEL(0);
|
2014-04-15 16:40:48 +02:00
|
|
|
char *make_absfilename_try (const char *first_part,
|
2015-07-26 12:50:16 +02:00
|
|
|
...) GPGRT_ATTR_SENTINEL(0);
|
2003-01-09 13:36:05 +01:00
|
|
|
int compare_filenames( const char *a, const char *b );
|
|
|
|
|
2016-08-11 20:46:51 +02:00
|
|
|
uint64_t string_to_u64 (const char *string);
|
2006-05-23 18:19:43 +02:00
|
|
|
int hextobyte (const char *s);
|
|
|
|
|
2015-11-23 22:13:56 +01:00
|
|
|
size_t utf8_charcount (const char *s, int len);
|
2007-01-25 11:26:55 +01:00
|
|
|
|
|
|
|
|
2004-12-13 16:49:56 +01:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
const char *w32_strerror (int ec);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-01-09 13:36:05 +01:00
|
|
|
int ascii_isupper (int c);
|
|
|
|
int ascii_islower (int c);
|
|
|
|
int ascii_toupper (int c);
|
|
|
|
int ascii_tolower (int c);
|
2015-02-26 18:16:45 +01:00
|
|
|
char *ascii_strlwr (char *s);
|
2019-02-08 09:32:55 +01:00
|
|
|
char *ascii_strupr (char *s);
|
2003-01-09 13:36:05 +01:00
|
|
|
int ascii_strcasecmp( const char *a, const char *b );
|
2003-06-18 21:56:13 +02:00
|
|
|
int ascii_strncasecmp (const char *a, const char *b, size_t n);
|
2005-06-16 10:12:03 +02:00
|
|
|
int ascii_memcasecmp( const void *a, const void *b, size_t n );
|
|
|
|
const char *ascii_memistr ( const void *buf, size_t buflen, const char *sub);
|
2003-01-09 13:36:05 +01:00
|
|
|
void *ascii_memcasemem (const void *haystack, size_t nhaystack,
|
|
|
|
const void *needle, size_t nneedle);
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_MEMICMP
|
|
|
|
int memicmp( const char *a, const char *b, size_t n );
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STPCPY
|
|
|
|
char *stpcpy(char *a,const char *b);
|
|
|
|
#endif
|
2014-11-11 15:14:31 +01:00
|
|
|
#ifndef HAVE_STRPBRK
|
|
|
|
char *strpbrk (const char *s, const char *accept);
|
|
|
|
#endif
|
2006-10-02 13:54:35 +02:00
|
|
|
#ifndef HAVE_STRSEP
|
|
|
|
char *strsep (char **stringp, const char *delim);
|
|
|
|
#endif
|
2003-01-09 13:36:05 +01:00
|
|
|
#ifndef HAVE_STRLWR
|
|
|
|
char *strlwr(char *a);
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRTOUL
|
2006-10-02 13:54:35 +02:00
|
|
|
# define strtoul(a,b,c) ((unsigned long)strtol((a),(b),(c)))
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
#ifndef HAVE_MEMMOVE
|
2006-10-02 13:54:35 +02:00
|
|
|
# define memmove(d, s, n) bcopy((s), (d), (n))
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRICMP
|
2006-10-02 13:54:35 +02:00
|
|
|
# define stricmp(a,b) strcasecmp( (a), (b) )
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
2006-10-19 16:22:06 +02:00
|
|
|
#ifndef HAVE_MEMRCHR
|
|
|
|
void *memrchr (const void *buffer, int c, size_t n);
|
|
|
|
#endif
|
|
|
|
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2006-10-02 13:54:35 +02:00
|
|
|
#ifndef HAVE_ISASCII
|
2011-02-04 12:57:53 +01:00
|
|
|
static inline int
|
2006-10-02 13:54:35 +02:00
|
|
|
isascii (int c)
|
|
|
|
{
|
|
|
|
return (((c) & ~0x7f) == 0);
|
|
|
|
}
|
|
|
|
#endif /* !HAVE_ISASCII */
|
|
|
|
|
|
|
|
|
2003-01-09 13:36:05 +01:00
|
|
|
#ifndef STR
|
2006-10-02 13:54:35 +02:00
|
|
|
# define STR(v) #v
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
#define STR2(v) STR(v)
|
|
|
|
|
2007-06-19 11:11:11 +02:00
|
|
|
/* Percent-escape the string STR by replacing colons with '%3a'. If
|
2007-11-19 17:03:50 +01:00
|
|
|
EXTRA is not NULL, also replace all characters given in EXTRA. The
|
|
|
|
"try_" variant fails with NULL if not enough memory can be
|
|
|
|
allocated. */
|
2007-06-19 11:11:11 +02:00
|
|
|
char *percent_escape (const char *str, const char *extra);
|
2007-11-19 17:03:50 +01:00
|
|
|
char *try_percent_escape (const char *str, const char *extra);
|
2007-06-18 22:15:01 +02:00
|
|
|
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2009-08-25 22:19:37 +02:00
|
|
|
/* Concatenate the string S1 with all the following strings up to a
|
|
|
|
NULL. Returns a malloced buffer with the new string or NULL on a
|
|
|
|
malloc error or if too many arguments are given. */
|
2015-07-26 12:50:16 +02:00
|
|
|
char *strconcat (const char *s1, ...) GPGRT_ATTR_SENTINEL(0);
|
2009-08-25 22:19:37 +02:00
|
|
|
/* Ditto, but die on error. */
|
2015-07-26 12:50:16 +02:00
|
|
|
char *xstrconcat (const char *s1, ...) GPGRT_ATTR_SENTINEL(0);
|
2009-08-25 22:19:37 +02:00
|
|
|
|
2015-03-12 13:03:50 +01:00
|
|
|
char **strsplit (char *string, char delim, char replacement, int *count);
|
2009-08-25 22:19:37 +02:00
|
|
|
|
2015-06-22 19:28:33 +02:00
|
|
|
/* Tokenize STRING using the set of delimiters in DELIM. */
|
|
|
|
char **strtokenize (const char *string, const char *delim);
|
|
|
|
|
2016-06-11 12:09:48 +02:00
|
|
|
/* Split STRING into space delimited fields and store them in the
|
|
|
|
* provided ARRAY. */
|
|
|
|
int split_fields (char *string, char **array, int arraysize);
|
|
|
|
|
2017-07-17 13:00:44 +02:00
|
|
|
/* Split STRING into colon delimited fields and store them in the
|
|
|
|
* provided ARRAY. */
|
|
|
|
int split_fields_colon (char *string, char **array, int arraysize);
|
|
|
|
|
2016-01-08 08:58:21 +01:00
|
|
|
/* Return True if MYVERSION is greater or equal than REQ_VERSION. */
|
|
|
|
int compare_version_strings (const char *my_version, const char *req_version);
|
|
|
|
|
2015-11-26 18:04:54 +01:00
|
|
|
/* Format a string so that it fits within about TARGET_COLS columns. */
|
2017-04-12 07:47:30 +02:00
|
|
|
char *format_text (const char *text, int target_cols, int max_cols);
|
2015-06-22 19:28:33 +02:00
|
|
|
|
2015-11-26 18:04:54 +01:00
|
|
|
|
2014-02-26 16:18:45 +01:00
|
|
|
/*-- mapstrings.c --*/
|
|
|
|
const char *map_static_macro_string (const char *string);
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#endif /*GNUPG_COMMON_STRINGHELP_H*/
|