1290001Sglebius/*
2290001Sglebius * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
3290001Sglebius * Copyright (C) 2001  Internet Software Consortium.
4290001Sglebius *
5290001Sglebius * Permission to use, copy, modify, and/or distribute this software for any
6290001Sglebius * purpose with or without fee is hereby granted, provided that the above
7290001Sglebius * copyright notice and this permission notice appear in all copies.
8290001Sglebius *
9290001Sglebius * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10290001Sglebius * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11290001Sglebius * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12290001Sglebius * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13290001Sglebius * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14290001Sglebius * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15290001Sglebius * PERFORMANCE OF THIS SOFTWARE.
16290001Sglebius */
17290001Sglebius
18290001Sglebius/* $Id: strerror.h,v 1.5 2007/06/19 23:47:20 tbox Exp $ */
19290001Sglebius
20290001Sglebius#ifndef ISC_STRERROR_H
21290001Sglebius#define ISC_STRERROR_H
22290001Sglebius
23290001Sglebius#include <sys/types.h>
24290001Sglebius
25290001Sglebius#include <isc/lang.h>
26290001Sglebius
27290001SglebiusISC_LANG_BEGINDECLS
28290001Sglebius
29290001Sglebius#define ISC_STRERRORSIZE 128
30290001Sglebius
31290001Sglebius/*
32290001Sglebius * Provide a thread safe wrapper to strerrror().
33290001Sglebius *
34290001Sglebius * Requires:
35290001Sglebius * 	'buf' to be non NULL.
36290001Sglebius */
37290001Sglebiusvoid
38290001Sglebiusisc__strerror(int num, char *buf, size_t bufsize);
39290001Sglebius
40290001SglebiusISC_LANG_ENDDECLS
41290001Sglebius
42290001Sglebius#endif /* ISC_STRERROR_H */
43