| 36 | } |
| 37 | |
| 38 | bool StringLength(OsiArgumentDesc & args) |
| 39 | { |
| 40 | auto str = args[0].String; |
| 41 | args[1].Int32 = (int32_t)strlen(str); |
| 42 | return true; |
| 43 | } |
| 44 | |
| 45 | bool StringToInt(OsiArgumentDesc & args) |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected