A free MS Word reader for Linux and RISC OS. Antiword converts the files from Word 2, 6, 7, 97, 2000

源代码在线查看: fail.c

软件大小: 311 K
上传用户: cq745
关键词: Word Antiword converts reader
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * fail.c				 * Copyright (C) 1998 A.J. van Os				 *				 * Description:				 * An alternative form of assert()				 */								#include 				#include "antiword.h"								#if !defined(NDEBUG)				void				__fail(char *szExpression, char *szFilename, int iLineNumber)				{					if (szExpression == NULL || szFilename == NULL) {						werr(1, "Internal error: no expression");					}				#if defined(DEBUG)					fprintf(stderr, "%s[%3d]: Internal error in '%s'\n",						szFilename, iLineNumber, szExpression);				#endif /* DEBUG */					werr(1, "Internal error in '%s' in file %s at line %d",						szExpression, szFilename, iLineNumber);				} /* end of __fail */				#endif /* !NDEBUG */							

相关资源