From c3eee8e333866d92e5fd94ae83cef618758c11bb Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Mon, 15 Sep 2025 18:50:32 +0200 Subject: FICS RPBLC v1.4.6 --- FICS/makerank.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 FICS/makerank.h (limited to 'FICS/makerank.h') diff --git a/FICS/makerank.h b/FICS/makerank.h new file mode 100644 index 0000000..6d70da2 --- /dev/null +++ b/FICS/makerank.h @@ -0,0 +1,20 @@ +#ifndef MAKERANK_H +#define MAKERANK_H + +#include "config.h" + +#define COMPUTER_FILE DEFAULT_LISTS "/computer" +#define MAX_LOGIN_NAME 21 + +typedef struct _ratings { + int num; + int rating; +} ratings; + +typedef struct _Entry { + char name[MAX_LOGIN_NAME]; + int computer; + ratings r[4]; +} ENTRY; + +#endif -- cgit v1.2.3