summaryrefslogtreecommitdiff
path: root/src/core/wee-string.c
AgeCommit message (Collapse)Author
2016-07-09core: rename function string_iconv_fprintf to string_fprintfSébastien Helleu
2016-05-08core: fix the hardcoded separator in string_split_commandWojciech Kwolek
2016-02-18core: fix typo in a commentSébastien Helleu
2016-01-31core: fix typo in a commentSébastien Helleu
2016-01-24doc: add an example in function string_split (plugin API reference)Sébastien Helleu
2016-01-23core: fix number of arguments returned by string_splitSébastien Helleu
When keep_eol is 2 and separators are found at the end of string, the function returned argc + 1 instead of argc.
2016-01-01core: update copyright datesSébastien Helleu
2015-12-31core: fix execution of empty command nameSébastien Helleu
The strings "/" and "/ " are not considered as valid commands any more.
2015-08-24api: fix handle of invalid escape in function string_convert_escaped_chars()Sébastien Helleu
And a new test is now checking that "\" returns "".
2015-08-22api: add function string_hex_dump()Sébastien Helleu
2015-08-18api: add argument "length" in function utf8_is_valid()Sébastien Helleu
2015-07-04api: fix type of value returned by functions utf8_prev_char, utf8_next_char ↵Sébastien Helleu
and utf8_add_offset
2015-07-04core: add missing comments before functions when the result must be freed ↵Sébastien Helleu
after use
2015-07-03api: fix type of value returned by function strcasestrSébastien Helleu
2015-06-24api: add function string_eval_path_home()Sébastien Helleu
2015-04-30core: add comments after some #endifSébastien Helleu
2015-04-11core: add options weechat.look.word_chars_{highlight|input} (closes #55, ↵Sébastien Helleu
task #9459)
2015-01-01core: update copyright datesSébastien Helleu
2014-10-12core: remove extra spaces in a commentSébastien Helleu
2014-09-28core: check that data is not NULL in function string_iconv_fprintfSébastien Helleu
2014-08-13core: make argument "errors" optional in function string_replace_with_callbackSébastien Helleu
2014-08-11core: callback_free_key shouldn't point to already free'd valueAndrew Potter
2014-08-11core: check that callback is not NULL in function string_replace_with_callbackSébastien Helleu
2014-08-08core: check that regex is not NULL in function string_replace_regexSébastien Helleu
2014-08-07core: fix example in comment of function string_replace_regexSébastien Helleu
2014-08-02core: fix result of hash function (in hashtables) on 32-bit systemsSébastien Helleu
2014-08-02api: fix function string_decode_base64Sébastien Helleu
The result of function was sometimes wrong, for example base64 decoding of "YWJj" was returning "ab" instead of "abc".
2014-08-02api: fix function string_format_size on 32-bit systemsSébastien Helleu
2014-07-30core: check that from/to arguments are not NULL in base16/64 functionsSébastien Helleu
2014-07-28core: check that string is not NULL in function string_input_for_bufferSébastien Helleu
2014-07-27core: check that string is not NULL in function string_iconvSébastien Helleu
2014-07-25core: fix compilation warning on GNU/Hurd about unsigned long numbersSébastien Helleu
2014-07-25core: add comments in translations for file size unitsSébastien Helleu
2014-07-25core: add terabyte unit for size displayedSébastien Helleu
2014-07-05core: return only -1, 0 or 1 in string comparison functionsSébastien Helleu
2014-07-05core: check that regex is not NULL in function string_regcompSébastien Helleu
2014-07-05core: check that regex is not NULL in function string_regex_flagsSébastien Helleu
2014-07-05core: add note about result that must be freed in function string_mask_to_regexSébastien Helleu
2014-07-05core: check that "chars" argument is not NULL in function string_stripSébastien Helleu
2014-07-05core: check that string is not NULL in function string_convert_escaped_charsSébastien Helleu
2014-07-05core: add comment with return value of function string_strcasestrSébastien Helleu
2014-07-04core: check that string is not NULL in function string_strndupSébastien Helleu
2014-04-12api: allow wildcard "*" inside the mask in function string_matchSébastien Helleu
2014-03-20api: add support of nested variables in function string_eval_expression and ↵Sebastien Helleu
command /eval (closes #35)
2014-03-15Merge branch 'exec'Sebastien Helleu
2014-03-13core: fix highlight problem with "(?-i)" and upper case letters in option ↵Sebastien Helleu
weechat.look.highlight
2014-03-13api: add callback in function string_replace_regexSebastien Helleu
2014-02-22core: comment unneeded assignment in function string_split_shell (make C ↵Sebastien Helleu
static analyzer happy)
2014-02-22core: fix uninitialized value in function string_decode_base64Sebastien Helleu
2014-02-22core: fix memory leak and use of invalid pointer in split of string (in case ↵Sebastien Helleu
of insufficient memory)