| 69 | const char* ERR_getErrorString(ERR_enum code); /* error_private.c */ |
| 70 | |
| 71 | ERR_STATIC const char* ERR_getErrorName(size_t code) |
| 72 | { |
| 73 | return ERR_getErrorString(ERR_getErrorCode(code)); |
| 74 | } |
| 75 | |
| 76 | #if defined (__cplusplus) |
| 77 | } |
no test coverage detected