| 31 | } |
| 32 | |
| 33 | cs_err PPC_option(cs_struct *handle, cs_opt_type type, size_t value) |
| 34 | { |
| 35 | if (type == CS_OPT_SYNTAX) |
| 36 | handle->syntax = (int) value; |
| 37 | |
| 38 | if (type == CS_OPT_MODE) { |
| 39 | handle->mode = (cs_mode)value; |
| 40 | } |
| 41 | |
| 42 | return CS_ERR_OK; |
| 43 | } |
| 44 | |
| 45 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…