#include "internal.h" // Equals returns true if string s and t are equivalent. bool str·equals(const string s, const string t) { vlong sL = str·len(s); vlong tL = str·len(t); if (sL != tL) return false; return memcmp(s, t, sL) == 0; }