📄 gerror.c
字号:
/* Implementation of the GERROR g77 intrinsic. Copyright (C) 2005 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>This file is part of the GNU Fortran 95 runtime library (libgfortran).Libgfortran is free software; you can redistribute it and/ormodify it under the terms of the GNU General PublicLicense as published by the Free Software Foundation; eitherversion 2 of the License, or (at your option) any later version.In addition to the permissions in the GNU General Public License, theFree Software Foundation gives you unlimited permission to link thecompiled version of this file into combinations with other programs,and to distribute those combinations without any restriction comingfrom the use of this file. (The General Public License restrictionsdo apply in other respects; for example, they cover modification ofthe file, and distribution when not linked into a combineexecutable.)Libgfortran is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General PublicLicense along with libgfortran; see the file COPYING. If not,write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,Boston, MA 02110-1301, USA. */#include "config.h"#include "libgfortran.h"#include <errno.h>#ifdef HAVE_STRING_H#include <string.h>#endif/* GERROR (MESSAGE), g77 intrinsic for retrieving the system error message corresponding to the last system error (C errno). CHARACTER(len=*), INTENT(OUT) :: MESSAGE */#ifdef HAVE_STRERRORvoid PREFIX(gerror) (char *, gfc_charlen_type);export_proto_np(PREFIX(gerror));void PREFIX(gerror) (char * msg, gfc_charlen_type msg_len){ int p_len; char *p; memset (msg, ' ', msg_len); /* Blank the string. */ p = strerror (errno); if (p == NULL) return; p_len = strlen (p); if (msg_len < p_len) memcpy (msg, p, msg_len); else memcpy (msg, p, p_len);}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -