rcsid.h
来自「linux下串口开发调试工具」· C头文件 代码 · 共 23 行
H
23 行
/* * $Id: rcsid.h,v 1.1 2000/01/27 11:25:53 misiek Exp $ */#define PKG_VER " $Package: " PACKAGE " $ $Version: " VERSION " $ "#if defined(NO_RCSID) || defined(lint)#define RCSID(x) /* empty */#else#if __STDC__/* * This function is never called from anywhere, but it calls itself * recursively only to fool gcc to not generate warnings :-). */static const char *rcsid(const char *);#define RCSID(x) \ static const char *rcsid(const char *s) { \ return rcsid(x); }#else /* ! __STDC__ */#define RCSID(x) \ static char *rcsid(s) char *s; { \ return rcsid(x); }#endif /* ! __STDC__ */#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?