strerror.c
上传用户:zm130024
上传日期:2007-01-04
资源大小:432k
文件大小:5k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* $Id: strerror.c,v 1.3 1999/05/13 16:35:58 karls Exp $ */
  2. #ifdef HAVE_CONFIG_H
  3. #include "autoconf.h"
  4. #endif  /* HAVE_CONFIG_H */
  5. #include "common.h"
  6. #if !HAVE_STRERROR
  7. /*
  8.  * Copyright (c) 1988 Regents of the University of California.
  9.  * All rights reserved.
  10.  *
  11.  * Redistribution and use in source and binary forms, with or without
  12.  * modification, are permitted provided that the following conditions
  13.  * are met:
  14.  * 1. Redistributions of source code must retain the above copyright
  15.  *    notice, this list of conditions and the following disclaimer.
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in the
  18.  *    documentation and/or other materials provided with the distribution.
  19.  * 3. All advertising materials mentioning features or use of this software
  20.  *    must display the following acknowledgement:
  21.  * This product includes software developed by the University of
  22.  * California, Berkeley and its contributors.
  23.  * 4. Neither the name of the University nor the names of its contributors
  24.  *    may be used to endorse or promote products derived from this software
  25.  *    without specific prior written permission.
  26.  *
  27.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  28.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  31.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  33.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  34.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  35.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  36.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  37.  * SUCH DAMAGE.
  38.  */
  39. #if defined(LIBC_SCCS) && !defined(lint)
  40. static char *rcsid = "$OpenBSD: __strerror.c,v 1.6 1996/09/25 08:17:30 deraadt Exp $";
  41. #endif /* LIBC_SCCS and not lint */
  42. #ifndef NL_TEXTMAX
  43. #define NL_TEXTMAX 255
  44. #endif  /* !NL_TEXTMAX */
  45. int sys_nerr;
  46. char *sys_errlist[];
  47. int errno;
  48. #if 0
  49. #include <errno.h>
  50. #include <limits.h>
  51. #include <stdio.h>
  52. #include <string.h>
  53. #endif
  54. static char *itoa(num)
  55. int num;
  56. {
  57. static char buffer[11];
  58. char *p;
  59. p = buffer + 4;
  60. while (num >= 10) {
  61. *--p = (num % 10) + '0';
  62. num /= 10;
  63. }
  64. *p = (num % 10) + '0';
  65. return p;
  66. }
  67. /*
  68.  * Since perror() is not allowed to change the contents of strerror()'s
  69.  * static buffer, both functions supply their own buffers to the
  70.  * internal function __strerror().
  71.  */
  72. char *
  73. __strerror(num, buf)
  74. int num;
  75. char *buf;
  76. {
  77. #define UPREFIX "Unknown error: "
  78. register unsigned int errnum;
  79. errnum = num; /* convert to unsigned */
  80. if (errnum < sys_nerr) {
  81. return(sys_errlist[errnum]);
  82. } else {
  83. strcpy(buf, UPREFIX);
  84. strncat(buf, itoa(errnum), NL_TEXTMAX-strlen(buf)-1);
  85. }
  86. return buf;
  87. }
  88. /*
  89.  * Copyright (c) 1988 Regents of the University of California.
  90.  * All rights reserved.
  91.  *
  92.  * Redistribution and use in source and binary forms, with or without
  93.  * modification, are permitted provided that the following conditions
  94.  * are met:
  95.  * 1. Redistributions of source code must retain the above copyright
  96.  *    notice, this list of conditions and the following disclaimer.
  97.  * 2. Redistributions in binary form must reproduce the above copyright
  98.  *    notice, this list of conditions and the following disclaimer in the
  99.  *    documentation and/or other materials provided with the distribution.
  100.  * 3. All advertising materials mentioning features or use of this software
  101.  *    must display the following acknowledgement:
  102.  * This product includes software developed by the University of
  103.  * California, Berkeley and its contributors.
  104.  * 4. Neither the name of the University nor the names of its contributors
  105.  *    may be used to endorse or promote products derived from this software
  106.  *    without specific prior written permission.
  107.  *
  108.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  109.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  110.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  111.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  112.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  113.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  114.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  115.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  116.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  117.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  118.  * SUCH DAMAGE.
  119.  */
  120. #if defined(LIBC_SCCS) && !defined(lint)
  121. static char *rcsid = "$OpenBSD: strerror.c,v 1.2 1996/08/19 08:34:17 tholo Exp $";
  122. #endif /* LIBC_SCCS and not lint */
  123. #if 0
  124. #include <string.h>
  125. #include <limits.h>
  126. #endif
  127. /*
  128.  * Since perror() is not allowed to change the contents of strerror()'s
  129.  * static buffer, both functions supply their own buffers to the
  130.  * internal function __strerror().
  131.  */
  132. char *
  133. strerror(num)
  134. int num;
  135. {
  136. static char buf[NL_TEXTMAX];
  137. return __strerror(num, buf);
  138. }
  139. #else
  140. static void avoid_error __P((void));
  141. static void avoid_error()
  142. {
  143. avoid_error();
  144. }
  145. #endif /* HAVE_STRERROR */