pretty.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 43 行

C
43
字号
// Test for PRETTY_FUNCTION// Build don't link:class SV;class SVTable // : public Debug{  // It is an array to pointer to a SV.  SV ** array;  // This is the size of array.  int maxCount;   // This is the current element count.  int count;  void fatal_error (const char *f, ...);public:  SVTable (int size, const char *d);  SVTable ();  SVTable (const SVTable &);  ~SVTable () {}};SVTable::SVTable (int size, const char *d)	: maxCount (size), count (0)// , Debug (d){  if (size < 0)  {    fatal_error ("%s: Invalid size: %d\n", __PRETTY_FUNCTION__, size);  }  array = (SV **) new SV * [size];  if (array == 0)  {    fatal_error ("%s: Failed to allocate array\n", __PRETTY_FUNCTION__);  }}

⌨️ 快捷键说明

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