diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-26 17:45:15 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-26 17:45:15 +0100 |
commit | 41a19ffcec5d01ac9dae93418e69018718562817 (patch) | |
tree | f8964056fb2ff06980f02e36188e9ab801173a3c /FICS/formula.h | |
parent | ba2f5e07b5b012be507b92f45282c57f2f26c3aa (diff) |
Sorted the function declarations
Diffstat (limited to 'FICS/formula.h')
-rw-r--r-- | FICS/formula.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/FICS/formula.h b/FICS/formula.h index 3b50676..8482b83 100644 --- a/FICS/formula.h +++ b/FICS/formula.h @@ -46,10 +46,9 @@ #define FUDGE_FACTOR 1e-3 -extern int GetRating (player *, int); -extern int GameMatchesFormula (int, int, int, int, int, int, int, int, textlist **); extern int CheckFormula (game *, int, int *, int, int *, int); +extern int GameMatchesFormula (int, int, int, int, int, int, int, int, textlist **); +extern int GetRating (player *, int); extern void ShowClauses (int, int, textlist *); #endif - |