| 823 | const char* ERR_getErrorString(ERR_enum code); /* error_private.c */ |
| 824 | |
| 825 | ERR_STATIC const char* ERR_getErrorName(size_t code) |
| 826 | { |
| 827 | return ERR_getErrorString(ERR_getErrorCode(code)); |
| 828 | } |
| 829 | |
| 830 | #if defined (__cplusplus) |
| 831 | } |
no test coverage detected