1
1

* treestore.c (str_common): Added a comment that str_common shall

not be called with two equal strings.
Этот коммит содержится в:
Roland Illig 2005-02-15 22:16:18 +00:00
родитель b75b3a042a
Коммит ffc41c1faa

Просмотреть файл

@ -58,7 +58,8 @@ tree_store_dirty(int state)
ts.dirty = state;
}
/* Returns number of common characters */
/* Returns number of common characters; s1[] and s2[] must differ in
* at least one character, or the behaviour will be undefined. */
static int
str_common(const char *s1, const char *s2)
{