?? ctdt.c
字號:
/* ctors and dtors arrays -- to be used by runtime system */
/* to call static constructors and destructors */
/* */
/* NOTE: Use a C compiler to compile this file. If you */
/* are using GNU C++, be sure to use compile this */
/* file using a GNU compiler with the */
/* -fdollars-in-identifiers flag. */
extern void (*_ctors[])();
void (*_ctors[])() =
{
0
};
extern void (*_dtors[])();
void (*_dtors[])() =
{
0
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -