| 1741 | } |
| 1742 | |
| 1743 | static int is_table_name(const char *s) |
| 1744 | { |
| 1745 | const char *dot = strrchr(s, '.'); |
| 1746 | return dot && !strcmp(dot, ".ref"); |
| 1747 | } |
| 1748 | |
| 1749 | static void remove_maybe_stale_table(struct reftable_stack *st, uint64_t max, |
| 1750 | const char *name) |
no outgoing calls
no test coverage detected