e6ee88658405177aee46ddb8902ae93aee5b1378
max
  Thu Jan 22 16:36:14 2026 -0800
Revert "changing superTrack TrackUi quite a bit.

This reverts commit fcb6dc8dfa166136193177c895ca181200850e4d.

diff --git src/lib/common.c src/lib/common.c
index 7774a64c1fa..756bf50236b 100644
--- src/lib/common.c
+++ src/lib/common.c
@@ -65,38 +65,30 @@
 }
 
 char *catThreeStrings(char *a, char *b, char *c)
 /* Allocate new string that is a concatenation of three strings. */
 {
 int aLen = strlen(a), bLen = strlen(b), cLen = strlen(c);
 int len = aLen + bLen + cLen; 
 char *newBuf = needLargeMem(len+1);
 memcpy(newBuf, a, aLen);
 memcpy(newBuf+aLen, b, bLen);
 memcpy(newBuf+aLen+bLen, c, cLen);
 newBuf[len] = 0;
 return newBuf;
 }
 
-/* count elements of a NULL-terminated array */
-int arrNullLen(char **arr)
-{
-    int n = 0;
-    while (arr[n]) n++;
-    return n;
-}
-
 /* Reverse the order of the bytes. */
 void reverseBytes(char *bytes, long length)
 {
 long halfLen = (length>>1);
 char *end = bytes+length;
 char c;
 while (--halfLen >= 0)
     {
     c = *bytes;
     *bytes++ = *--end;
     *end = c;
     }
 }
 
 void reverseInts(int *a, int length)