shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

245
active users

#garbled

0 posts0 participants0 posts today
Replied in thread

@codehappy.bsky.social mostly complications in the compar function for qsort

1977 #clean

compar(c1, c2)
struct count *c1, *c2;
{ int i;

if ((i = c2->cnt - c1->cnt) != 0)
return i;
return c1->chr - c2->chr;
}

today #garbled

int compar(const void *c1, const void *c2)
{ int i;

if ((i = (((struct count *)c2)->cnt - ((struct count *)c1)->cnt)) != 0)
return i;
return ((struct count *)c1)->chr - ((struct count *)c2)->chr;
}