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

📄 t_pclstr.c

📁 CCSM Research Tools: Community Atmosphere Model (CAM)
💻 C
字号:
#include "gpt.h"char *t_pclstr (int code){#if ( defined DISABLE_TIMERS )  return "";#endif#ifdef HAVE_PCL  switch (code) {  case PCL_SUCCESS:     return "Success";      case PCL_NOT_SUPPORTED:    return "Event not supported";      case PCL_TOO_MANY_EVENTS:    return "Too many events";      case PCL_TOO_MANY_NESTINGS:    return "More nesting levels than allowed";      case PCL_ILL_NESTING:    return "Bad nesting";      case PCL_ILL_EVENT:    return "Illegal event identifier";      case PCL_MODE_NOT_SUPPORTED:    return "Mode not supported";      case PCL_FAILURE:    return "Failure for unspecified reason";      default:    return "Unknown error code";      }#endif}        

⌨️ 快捷键说明

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