| 150 | } |
| 151 | |
| 152 | static inline int clamp_int(int v, int minv, int maxv) { |
| 153 | return (v < minv) ? minv : (v > maxv) ? maxv : v; |
| 154 | } |
| 155 | |
| 156 | int builtin_string_find1 ( const char *str, const char *substr, int start, Context * context ) { |
| 157 | if (!str || !substr || !*str || !*substr) |
no outgoing calls
no test coverage detected