| 9 | } |
| 10 | |
| 11 | __forceinline uint32_t stringLength ( Context &, const char * str ) { // str!=nullptr |
| 12 | return uint32_t(strlen(str)); |
| 13 | } |
| 14 | |
| 15 | __forceinline uint32_t stringLengthSafe ( Context & ctx, const char * str ) {//accepts nullptr |
| 16 | return str ? stringLength(ctx,str) : 0; |
no outgoing calls
no test coverage detected