| 1235 | } |
| 1236 | |
| 1237 | CAPSTONE_EXPORT |
| 1238 | const char * CAPSTONE_API cs_group_name(csh ud, unsigned int group) |
| 1239 | { |
| 1240 | struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud; |
| 1241 | |
| 1242 | if (!handle || handle->group_name == NULL) { |
| 1243 | return NULL; |
| 1244 | } |
| 1245 | |
| 1246 | return handle->group_name(ud, group); |
| 1247 | } |
| 1248 | |
| 1249 | CAPSTONE_EXPORT |
| 1250 | bool CAPSTONE_API cs_insn_group(csh ud, const cs_insn *insn, unsigned int group_id) |
searching dependent graphs…