xiph / rnnoise

Recurrent neural network for audio noise reduction
BSD 3-Clause "New" or "Revised" License
3.97k stars 890 forks source link

rnnoise.h header file should quote with extern c to against link error #147

Open drummerchin opened 3 years ago

drummerchin commented 3 years ago

rnnoise.h header file should quote with extern c to against link error when using in C++.


#ifdef __cplusplus
extern "C" {
#endif

// ...

#ifdef __cplusplus
}
#endif