diff options
author | Christophe Grenier <[email protected]> | 2009-01-10 16:04:39 +0100 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2009-01-10 16:04:39 +0100 |
commit | 86f46991fb400a57d6c84699818dfeccfa08cc2a (patch) | |
tree | b4b66dfa6ce9ec06c4de918104054497ab38eae8 /src/unicode.h | |
parent | 38ce28702691b4adc56898262a09cd1f0500a681 (diff) |
Modify header files for C function declaration if C++ compilation
Diffstat (limited to 'src/unicode.h')
-rw-r--r-- | src/unicode.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unicode.h b/src/unicode.h index 42c212fc..863f8d1e 100644 --- a/src/unicode.h +++ b/src/unicode.h @@ -19,6 +19,13 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifdef __cplusplus +extern "C" { +#endif int UCSle2str(char *to, const uint16_t *from, const unsigned int len); int str2UCSle(uint16_t *to, const char *from, const unsigned int len); + +#ifdef __cplusplus +} /* closing brace for extern "C" */ +#endif |