| 276 | } |
| 277 | |
| 278 | SIValue AR_PATH_LENGTH(SIValue *argv, int argc, void *private_data) { |
| 279 | if(SI_TYPE(argv[0]) == T_NULL) return SI_NullVal(); |
| 280 | return SI_LongVal(SIPath_Length(argv[0])); |
| 281 | } |
| 282 | |
| 283 | void Register_PathFuncs() { |
| 284 | SIType *types; |
nothing calls this directly
no test coverage detected