?? vs2.c
字號:
/********//* USES *//********//* libs ext. <>, our "" *//* global header (opt.) and vsis's prototypes "" */#include "csf.h" #include "csfimpl.h" /* headers of this app. modules called */ /***************//* EXTERNALS *//***************//**********************/ /* LOCAL DECLARATIONS *//**********************/ /*********************/ /* LOCAL DEFINITIONS *//*********************/ /******************//* IMPLEMENTATION *//******************//* test if valuescale/datatype is a CSF version 2 value scale * RvalueScale2 tests if the map's value scale is a version * 2 valuescale/datatype. * returns * 0 if the value is not in the above list, 1 if it does. * */int RvalueScale2( CSF_VS vs) /* value scale. ALL OF BELOW are accepted */ switch(vs) { case VS_LDD: case VS_BOOLEAN: case VS_NOMINAL: case VS_ORDINAL: case VS_SCALAR: case VS_DIRECTION: return 1; default : return 0; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -