1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-11 14:01:34 +00:00
Files
musl/src/string/strerror_r.c
2011-02-12 00:22:29 -05:00

12 lines
197 B
C

#include <string.h>
#include <errno.h>
int strerror_r(int err, char *buf, size_t buflen)
{
char *msg = strerror(err);
if (strlen(msg) >= buflen)
return ERANGE;
strcpy(buf, msg);
return 0;
}