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

📄 debug.h

📁 mobile ip 在linux下的一种实现
💻 H
字号:
/* $Id: debug.h,v 1.9 2001/08/05 17:32:51 jm Exp $ * Header files for debugging functions * * Dynamic hierarchial IP tunnel * Copyright (C) 1998-2001, Dynamics group * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. See README and COPYING for * more details. */#ifndef DEBUG_H#define DEBUG_H#include <stdio.h>#include <stdarg.h>/* DEBUG */#ifdef NODEBUGMODE#define DEBUG nodebug#define DEBUG_HEXDUMP(...)#else#define DEBUG debug#define DEBUG_HEXDUMP debug_hexdump#endif/* prototypes */#define CHECK_FORMAT __attribute__ ((format (printf, 2, 3)))void debug(char flag, char *format, ...) CHECK_FORMAT;void nodebug(char flag, char *format, ...) CHECK_FORMAT;void debug_hexdump(char flag, const char *title, const unsigned char *buf,		   int len);#endif /* DEBUG_H */

⌨️ 快捷键说明

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