1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef NRF_STRERROR_H__
- #define NRF_STRERROR_H__
- #include "sdk_errors.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- char const * nrf_strerror_get(ret_code_t code);
- char const * nrf_strerror_find(ret_code_t code);
- #ifdef __cplusplus
- }
- #endif
- #endif
|