| 1098 | |
| 1099 | |
| 1100 | static int exclusive (CharsetTag *c1, CharsetTag *c2) { |
| 1101 | if (c1->tag == NOINFO || c2->tag == NOINFO) |
| 1102 | return 0; /* one of them is not filled */ |
| 1103 | else return exclusiveset(c1->cs, c2->cs); |
| 1104 | } |
| 1105 | |
| 1106 | |
| 1107 | static Instruction *newcharset (lua_State *L) { |
no test coverage detected