diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 17:33:52 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 17:33:52 +0100 |
commit | 80f8a41ff92f051ceb88f92a57b0f34a9ffde2f1 (patch) | |
tree | d13d77ea6fd29b6e2fa92a2da1050f6a3f159e44 /FICS/rating_conv.c | |
parent | 9b516c5054d414b38912201d8a2348f317e16160 (diff) |
Disabled unused private functions
Diffstat (limited to 'FICS/rating_conv.c')
-rw-r--r-- | FICS/rating_conv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FICS/rating_conv.c b/FICS/rating_conv.c index 977f978..3f5a98e 100644 --- a/FICS/rating_conv.c +++ b/FICS/rating_conv.c @@ -32,17 +32,21 @@ elo_to_bcf(int elo) return (elo - 600) / 8; } +#if 0 PRIVATE int uscf_to_bcf(int uscf) { return (uscf - 700) / 8; } +#endif +#if 0 PRIVATE int bcf_to_uscf(int bcf) { return (bcf * 8 + 700); } +#endif PRIVATE void printgrades(int p, int elo, int uscf, int bcf) |