mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
61 lines
3.1 KiB
C
61 lines
3.1 KiB
C
/*
|
|
* Copyright (c) 2003-2009 by FlashCode <flashcode@flashtux.org>
|
|
* See README for License detail, AUTHORS for developers list.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it 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.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef __WEECHAT_STRING_H
|
|
#define __WEECHAT_STRING_H 1
|
|
|
|
extern char *string_strndup (const char *string, int length);
|
|
extern void string_tolower (char *string);
|
|
extern void string_toupper (char *string);
|
|
extern int string_strcasecmp (const char *string1, const char *string2);
|
|
extern int string_strncasecmp (const char *string1, const char *string2,
|
|
int max);
|
|
extern int string_strcmp_ignore_chars (const char *string1,
|
|
const char *string2,
|
|
const char *chars_ignored,
|
|
int case_sensitive);
|
|
extern char *string_strcasestr (const char *string, const char *search);
|
|
extern int string_match (const char *string, const char *mask,
|
|
int case_sensitive);
|
|
extern char *string_replace (const char *string, const char *search,
|
|
const char *replace);
|
|
extern char *string_remove_quotes (const char *string, const char *quotes);
|
|
extern char *string_strip (const char *string, int left, int right,
|
|
const char *chars);
|
|
extern char *string_convert_hex_chars (const char *string);
|
|
extern int string_has_highlight (const char *string,
|
|
const char *highlight_words);
|
|
extern char *string_mask_to_regex (const char *mask);
|
|
extern char **string_explode (const char *string, const char *separators,
|
|
int keep_eol, int num_items_max, int *num_items);
|
|
extern void string_free_exploded (char **exploded_string);
|
|
extern char *string_build_with_exploded (const char **exploded_string,
|
|
const char *separator);
|
|
extern char **string_split_command (const char *command, char separator);
|
|
extern void string_free_splitted_command (char **splitted_command);
|
|
extern char *string_iconv (int from_utf8, const char *from_code,
|
|
const char *to_code, const char *string);
|
|
extern char *string_iconv_to_internal (const char *charset, const char *string);
|
|
extern char *string_iconv_from_internal (const char *charset,
|
|
const char *string);
|
|
extern void string_iconv_fprintf (FILE *file, const char *data, ...);
|
|
extern char *string_format_size (unsigned long size);
|
|
|
|
#endif /* wee-string.h */
|