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

📄 util.c

📁 linux下驱动程序设计的文章
💻 C
字号:
 /************************************************* *   nope - open source drivers for the yepp(tm)  * *************************************************/ /* Copyright (c) 2001, James McKenzie.  *                      All rights reserved  *  * By using this file, you agree to the terms and conditions set  * forth in the LICENCE file which can be found at the top level of  * the nope distribution. Neither James McKenzie nor anybody else   * warranties that it is legal to use this software - that is your  * problem.   *  * yepp is a trademark of Samsung.  *  *//* * util.c: * * Copyright (c) 2001 James McKenzie <james@fishsoup.dhs.org>, * All rights reserved. * */static char rcsid[] = "$Id: util.c,v 1.5 2001/05/07 00:08:12 root Exp $";/* * $Log: util.c,v $ * Revision 1.5  2001/05/07 00:08:12  root * # * * Revision 1.4  2001/01/06 18:11:44  root * # * */#include "project.h"voidmoan (char *fmt, ...){  va_list ap;  va_start (ap, fmt);  vfprintf (stderr, fmt, ap);  va_end (ap);}

⌨️ 快捷键说明

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