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

📄 passert.h

📁 This a good VPN source
💻 H
字号:
/* * sanitize a string into a printable format. * * Copyright (C) 1998-2002  D. Hugh Redelmeier. * Copyright (C) 2003  Michael Richardson <mcr@freeswan.org> *  * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your * option) any later version.  See <http://www.fsf.org/copyleft/lgpl.txt>. *  * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public * License for more details. * * RCSID $Id: passert.h,v 1.7 2004/10/21 18:44:42 mcr Exp $ */#include "openswan.h"#ifndef _OPENSWAN_PASSERT_H#define _OPENSWAN_PASSERT_H/* our versions of assert: log result */#ifdef DEBUGtypedef void (*openswan_passert_fail_t)(const char *pred_str,					const char *file_str,					unsigned long line_no) NEVER_RETURNS;openswan_passert_fail_t openswan_passert_fail;extern void pexpect_log(const char *pred_str			, const char *file_str, unsigned long line_no);# define impossible() do { \    if(openswan_passert_fail) {					\      (*openswan_passert_fail)("impossible", __FILE__, __LINE__); \    }} while(0)extern void switch_fail(int n    , const char *file_str, unsigned long line_no) NEVER_RETURNS;# define bad_case(n) switch_fail((int) n, __FILE__, __LINE__)# define passert(pred) do { \	if (!(pred)) \	  if(openswan_passert_fail) { \	    (*openswan_passert_fail)(#pred, __FILE__, __LINE__);	\	  } \  } while(0)# define pexpect(pred) do { \	if (!(pred)) \	    pexpect_log(#pred, __FILE__, __LINE__); \  } while(0)/* assert that an err_t is NULL; evaluate exactly once */# define happy(x) { \	err_t ugh = x; \	if (ugh != NULL) \	  if(openswan_passert_fail) { (*openswan_passert_fail)(ugh, __FILE__, __LINE__); }  \    }#else /*!DEBUG*/# define impossible() abort()# define bad_case(n) abort()# define passert(pred)  { }	/* do nothing */# define happy(x)  { (void) x; }	/* evaluate non-judgementally */#endif /*!DEBUG*/#endif /* _OPENSWAN_PASSERT_H */

⌨️ 快捷键说明

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