+2006-10-29 Bruno Haible <bruno@clisp.org>
+
+ Clean up libgettextpo exports in C++ mode.
+ * po-gram.h: Wrap declarations in extern "C".
+
2006-10-29 Bruno Haible <bruno@clisp.org>
Make it compile in C++ mode.
/* GNU gettext - internationalization aids
- Copyright (C) 1995, 2002-2003 Free Software Foundation, Inc.
+ Copyright (C) 1995, 2002-2003, 2006 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au>
#ifndef _PO_GRAM_H
#define _PO_GRAM_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
extern int po_gram_parse (void);
+#ifdef __cplusplus
+}
+#endif
+
#endif
+2006-10-29 Bruno Haible <bruno@clisp.org>
+
+ * lib/fstrcmp.h: Wrap declarations in extern "C".
+
2006-10-29 Bruno Haible <bruno@clisp.org>
Make it compile in C++ mode.
/* 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>
#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