| 1174 | } |
| 1175 | |
| 1176 | int SetTable(GluaDecompileContextP ctx, Function* F, int a, std::string bstr, std::string cstr) { |
| 1177 | DecTable* tbl = (DecTable*)FindFromListTail(&(F->tables), (ListItemCmpFn)MatchTable, &a); |
| 1178 | if (!tbl) { |
| 1179 | UnsetPending(ctx, F, a); |
| 1180 | return 0; |
| 1181 | } |
| 1182 | AddToTable(F, tbl, cstr, bstr); |
| 1183 | return 1; |
| 1184 | } |
| 1185 | |
| 1186 | /* |
| 1187 | ** BoolOp Functions |
no test coverage detected