PatchworkOS
Loading...
Searching...
No Matches
strerrorlen_s.c
Go to the documentation of this file.
2#include <string.h>
3
4size_t strerrorlen_s(errno_t errnum)
5{
6 return strlen(strerror(errnum));
7}
int errno_t
Definition errno_t.h:4
size_t strerrorlen_s(errno_t errnum)
_PUBLIC char * strerror(int errnum)
Definition strerror.c:6
_PUBLIC size_t strlen(const char *s)
Definition strlen.c:3