?? rcsid.h
字號:
/* * $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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -