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

📄 first.c

📁 很好用的内存泄漏检测工具。要配合linux的gcc使用,安装后将你的编译器gcc命令换成yamd-gcc就行了
💻 C
字号:
/*  This file and the rest of YAMD is copyright (C) 1999 by Nate Eldredge. *//*  There is no warranty whatever; I disclaim responsibility for any *//*  damage caused.  Released under the GNU General Public License (see the *//*  file COPYING). *//* This is linked first on the command line. */extern void __yamd_maybe_startup(void);extern void __yamd_maybe_finish(void);/* Make sure this module is linked. */int __yamd_hook_2 asm ("__yamd_hook_2") = 0;static void construct(void) __attribute__((constructor));static void construct(void) { __yamd_maybe_startup(); }static void destruct(void) __attribute__((destructor));static void destruct(void) { __yamd_maybe_finish(); }

⌨️ 快捷键说明

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