bug in cursor up navigation fixed
[claws.git] / libkcc / compare.c
1 #include "libkcc.h"
2
3 /*---------------------------------------------------------------------
4     NAME
5         compare
6  ---------------------------------------------------------------------*/
7 bool Kcc_compare(s, str)
8     register char *s, *str;
9 {
10     while (*s)
11         if (*s++ != *str++)
12             return (0);
13     return (1);
14 }