| 878 | } |
| 879 | |
| 880 | bool scripteq(const u8 *s1, const u8 *s2) |
| 881 | { |
| 882 | memcheck(s1, tal_count(s1)); |
| 883 | memcheck(s2, tal_count(s2)); |
| 884 | |
| 885 | if (tal_count(s1) != tal_count(s2)) |
| 886 | return false; |
| 887 | return memcmp(s1, s2, tal_count(s1)) == 0; |
| 888 | } |
no outgoing calls