1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-05 02:29:28 +02:00
This commit is contained in:
B. Petersen 2018-08-31 00:05:12 +02:00
parent 1a516766a6
commit d82eb58dc7

View file

@ -179,7 +179,7 @@ int dc_str_replace(char** haystack, const char* needle, const char* replacement)
}
int dc_str_contains(const char* haystack, const const char* needle)
int dc_str_contains(const char* haystack, const char* needle)
{
/* case-insensitive search of needle in haystack, return 1 if found, 0 if not */
if (haystack==NULL || needle==NULL) {