/ IsTypeChar: returns true for character type(s). */ /
| 232 | /* IsTypeChar: returns true for character type(s). */ |
| 233 | /***********************************************************************/ |
| 234 | bool IsTypeChar(int type) |
| 235 | { |
| 236 | switch (type) { |
| 237 | case TYPE_STRING: |
| 238 | case TYPE_DECIM: |
| 239 | case TYPE_BIN: |
| 240 | return true; |
| 241 | } // endswitch type |
| 242 | |
| 243 | return false; |
| 244 | } // end of IsTypeChar |
| 245 | |
| 246 | /***********************************************************************/ |
| 247 | /* IsTypeNum: returns true for numeric types. */ |
no outgoing calls
no test coverage detected