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