1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 15:26:37 +02:00

typing: add typing plugin

This commit is contained in:
Sébastien Helleu
2021-06-28 20:27:08 +02:00
parent b585ec09f8
commit dccf605e66
24 changed files with 972 additions and 20 deletions
+2 -3
View File
@@ -2093,13 +2093,12 @@ TEST(CoreString, InputForBuffer)
char *str;
POINTERS_EQUAL(NULL, string_input_for_buffer (NULL));
POINTERS_EQUAL(NULL, string_input_for_buffer ("/"));
POINTERS_EQUAL(NULL, string_input_for_buffer ("/abc"));
str = strdup ("");
STRCMP_EQUAL(str, string_input_for_buffer (str));
free (str);
str = strdup ("/");
STRCMP_EQUAL(str, string_input_for_buffer (str));
free (str);
str = strdup ("/ ");
STRCMP_EQUAL(str, string_input_for_buffer (str));
free (str);