+/*------------------------------.
+| Abort if S is not a struniq. |
+`------------------------------*/
+
+void
+struniq_assert (const char *s)
+{
+ if (!hash_lookup (struniqs_table, s))
+ {
+ error (0, 0, "not a struniq: %s", quotearg (s));
+ abort ();
+ }
+}
+
+