| 113 | } |
| 114 | |
| 115 | static int validate_bit(opt_arg* arg, void* args) { |
| 116 | char* str = (char*)args; |
| 117 | |
| 118 | arg->u32 = 0; |
| 119 | if (str == NULL) return 0; |
| 120 | |
| 121 | arg->u32 = atoi(str); |
| 122 | |
| 123 | if (arg->u32 != 32 && arg->u32 != 64 && arg->u32 != 96) |
| 124 | return 0; |
| 125 | else |
| 126 | return 1; |
| 127 | } |
| 128 | |
| 129 | static void usage(void) { |
| 130 | printf("usage: SearchAvailableExe [options]\n"); |
nothing calls this directly
no outgoing calls
no test coverage detected