| 7791 | #define INIT_POWER 6 |
| 7792 | |
| 7793 | static XML_Bool FASTCALL |
| 7794 | keyeq(KEY s1, KEY s2) { |
| 7795 | for (; *s1 == *s2; s1++, s2++) |
| 7796 | if (*s1 == 0) |
| 7797 | return XML_TRUE; |
| 7798 | return XML_FALSE; |
| 7799 | } |
| 7800 | |
| 7801 | static size_t |
| 7802 | keylen(KEY s) { |
no outgoing calls
no test coverage detected
searching dependent graphs…