aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/ratings.c
diff options
context:
space:
mode:
Diffstat (limited to 'FICS/ratings.c')
-rw-r--r--FICS/ratings.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/FICS/ratings.c b/FICS/ratings.c
index 44eea2c..369a647 100644
--- a/FICS/ratings.c
+++ b/FICS/ratings.c
@@ -539,6 +539,45 @@ zero_stats(void)
numW = 0;
}
+#if 0
+PUBLIC int
+com_best(int p, param_list param)
+{
+ pprintf(p, "Standard Blitz Wild\n");
+
+ for (int i = 0; i < MAX_BEST; i++) {
+ if (i >= numS && i >= numB)
+ break;
+
+ if (i < numS) {
+ pprintf(p, "%4d %-17s ",
+ bestS[i].rating,
+ bestS[i].name);
+ } else {
+ pprintf(p, " ");
+ }
+
+ if (i < numB) {
+ pprintf(p, "%4d %-17s ",
+ bestB[i].rating,
+ bestB[i].name);
+ } else {
+ pprintf(p, " ");
+ }
+
+ if (i < numW) {
+ pprintf(p, "%4d %-17s\n",
+ bestW[i].rating,
+ bestW[i].name);
+ } else {
+ pprintf(p, "\n");
+ }
+ }
+
+ return COM_OK;
+}
+#endif
+
PUBLIC void
rating_init(void)
{