4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-06 22:40:36 +08:00
newlib-cygwin/newlib/libc/string/xpg_strerror_r.c
Yaakov Selkowitz 6783860a2e ansification: remove _AND
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:05 -06:00

27 lines
505 B
C

/* POSIX variant of strerror_r. */
#undef __STRICT_ANSI__
#include <errno.h>
#include <string.h>
int
_DEFUN (__xpg_strerror_r, (errnum, buffer, n),
int errnum,
char *buffer,
size_t n)
{
char *error;
int result = 0;
if (!n)
return ERANGE;
error = _strerror_r (_REENT, errnum, 1, &result);
if (strlen (error) >= n)
{
memcpy (buffer, error, n - 1);
buffer[n - 1] = '\0';
return ERANGE;
}
strcpy (buffer, error);
return (result || *error) ? result : EINVAL;
}