| 177 | } |
| 178 | |
| 179 | staticfn boolean |
| 180 | check_restriction(int restriction) |
| 181 | { |
| 182 | boolean ret = FALSE; |
| 183 | |
| 184 | if (!bcrestriction || (restriction == override_restriction)) |
| 185 | ret = TRUE; |
| 186 | else |
| 187 | ret = (bcrestriction == restriction) ? TRUE : FALSE; |
| 188 | return ret; |
| 189 | } |
| 190 | |
| 191 | #ifndef BREADCRUMBS |
| 192 | void |
no outgoing calls
no test coverage detected