⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 perror.c

📁 Newlib 嵌入式 C库 标准实现代码
💻 C
字号:
/* * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, * advertising materials, and other materials related to such * distribution and use acknowledge that the software was developed * by the University of California, Berkeley.  The name of the * University may not be used to endorse or promote products derived * from this software without specific prior written permission. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *//*FUNCTION<<perror>>---print an error message on standard errorINDEX	perrorINDEX	_perror_rANSI_SYNOPSIS	#include <stdio.h>	void perror(char *<[prefix]>);	void _perror_r(struct _reent *<[reent]>, char *<[prefix]>);TRAD_SYNOPSIS	#include <stdio.h>	void perror(<[prefix]>)	char *<[prefix]>;	void _perror_r(<[reent]>, <[prefix]>)	struct _reent *<[reent]>;	char *<[prefix]>;DESCRIPTIONUse <<perror>> to print (on standard error) an error messagecorresponding to the current value of the global variable <<errno>>.Unless you use <<NULL>> as the value of the argument <[prefix]>, theerror message will begin with the string at <[prefix]>, followed by acolon and a space (<<: >>). The remainder of the error message is oneof the strings described for <<strerror>>.The alternate function <<_perror_r>> is a reentrant version.  Theextra argument <[reent]> is a pointer to a reentrancy structure.RETURNS<<perror>> returns no result.PORTABILITYANSI C requires <<perror>>, but the strings issued vary from oneimplementation to another.Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,<<lseek>>, <<read>>, <<sbrk>>, <<write>>.*/#include <_ansi.h>#include <reent.h>#include <stdio.h>#include <string.h>#include "local.h"_VOID_DEFUN(_perror_r, (ptr, s),       struct _reent *ptr _AND       _CONST char *s){  char *error;  _REENT_SMALL_CHECK_INIT (ptr);  if (s != NULL && *s != '\0')    {      fputs (s, _stderr_r (ptr));      fputs (": ", _stderr_r (ptr));    }  if ((error = strerror (ptr->_errno)) != NULL)    fputs (error, _stderr_r (ptr));  fputc ('\n', _stderr_r (ptr));}#ifndef _REENT_ONLY_VOID_DEFUN(perror, (s),       _CONST char *s){  _perror_r (_REENT, s);}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -