- Added C++ wrapper code
This commit is contained in:
parent
2f5947e1f6
commit
bcd5db493f
1 changed files with 8 additions and 0 deletions
|
@ -71,6 +71,10 @@
|
|||
* Module dependent error code (5 bits 0x.08.-0x.F8.)
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \brief Translate a PolarSSL error code into a string representation,
|
||||
* Result is truncated if necessary and always includes a terminating
|
||||
|
@ -82,4 +86,8 @@
|
|||
*/
|
||||
void error_strerror( int errnum, char *buffer, size_t buflen );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* error.h */
|
||||
|
|
Loading…
Reference in a new issue