diff options
author | Bruno Haible <bruno@clisp.org> | 2006-11-01 21:43:51 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:18 +0200 |
commit | 13fa5131b37c72af941c0f45c20fe643bee64651 (patch) | |
tree | b6f899ce4840e2d55043021b8cf8deb53d474252 /gnulib-local/lib | |
parent | de3108ab26e8d0c616d870c787289ccc5964cfde (diff) | |
download | external_gettext-13fa5131b37c72af941c0f45c20fe643bee64651.zip external_gettext-13fa5131b37c72af941c0f45c20fe643bee64651.tar.gz external_gettext-13fa5131b37c72af941c0f45c20fe643bee64651.tar.bz2 |
Clean up libgettextpo exports in C++ mode.
Diffstat (limited to 'gnulib-local/lib')
-rw-r--r-- | gnulib-local/lib/fstrcmp.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnulib-local/lib/fstrcmp.h b/gnulib-local/lib/fstrcmp.h index e4dbe55..4671c55 100644 --- a/gnulib-local/lib/fstrcmp.h +++ b/gnulib-local/lib/fstrcmp.h @@ -1,5 +1,5 @@ /* Fuzzy string comparison. - Copyright (C) 1995, 2000, 2002-2003 Free Software Foundation, Inc. + Copyright (C) 1995, 2000, 2002-2003, 2006 Free Software Foundation, Inc. This file was written by Peter Miller <pmiller@agso.gov.au> @@ -20,8 +20,16 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _FSTRCMP_H #define _FSTRCMP_H +#ifdef __cplusplus +extern "C" { +#endif + /* Fuzzy compare of S1 and S2. Return a measure for the similarity of S1 and S1. The higher the result, the more similar the strings are. */ extern double fstrcmp (const char *s1, const char *s2); +#ifdef __cplusplus +} +#endif + #endif |