X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ffstrcmp.h;h=343c5ee77921644fdc5d4762b88e490d4d70550f;hb=497bb5fc57d14e07115482157ed318d078a83083;hp=807b0ae64bb5e8804c39dc85ae1ed940cc13f938;hpb=4facad5a3d557a73ea0bb1cf8b6e835163e1def1;p=gnulib.git diff --git a/lib/fstrcmp.h b/lib/fstrcmp.h index 807b0ae64..343c5ee77 100644 --- a/lib/fstrcmp.h +++ b/lib/fstrcmp.h @@ -1,5 +1,5 @@ /* Fuzzy string comparison. - Copyright (C) 1995, 2000, 2002-2003, 2006, 2008 Free Software + Copyright (C) 1995, 2000, 2002-2003, 2006, 2008-2010 Free Software Foundation, Inc. This file was written by Peter Miller @@ -33,7 +33,7 @@ extern double fstrcmp (const char *s1, const char *s2); /* Like fstrcmp (S1, S2), except that if the result is < LOWER_BOUND, an arbitrary other value < LOWER_BOUND can be returned. */ extern double fstrcmp_bounded (const char *s1, const char *s2, - double lower_bound); + double lower_bound); /* A shortcut for fstrcmp. Avoids a function call. */ #define fstrcmp(s1,s2) fstrcmp_bounded (s1, s2, 0.0)