diff options
author | Chris Robinson <[email protected]> | 2018-03-09 17:24:03 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-03-09 17:24:03 -0800 |
commit | 30821e978b69fa017cbcd76e5ff25c62f16b1d2a (patch) | |
tree | 6c47c2d5f96d95c46de636a79cbb2e21fb39308f /Alc/alstring.h | |
parent | c0e7a5b8b07132f39e7bf60371586d5d56984e14 (diff) |
Add extern "C" to some headers
Diffstat (limited to 'Alc/alstring.h')
-rw-r--r-- | Alc/alstring.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Alc/alstring.h b/Alc/alstring.h index e10811da..923a5ea2 100644 --- a/Alc/alstring.h +++ b/Alc/alstring.h @@ -6,6 +6,10 @@ #include "vector.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef char al_string_char_type; TYPEDEF_VECTOR(al_string_char_type, al_string) TYPEDEF_VECTOR(al_string, vector_al_string) @@ -47,4 +51,8 @@ void alstr_copy_wrange(al_string *str, const wchar_t *from, const wchar_t *to); void alstr_append_wrange(al_string *str, const wchar_t *from, const wchar_t *to); #endif +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif /* ALSTRING_H */ |