aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/formula.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-27 22:39:23 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-27 22:39:23 +0100
commit1156e9d46d23cc71ec3d407662b4b45d99db4562 (patch)
tree841abdec4581998f5b03b1c05df65e981babae7b /FICS/formula.c
parent35b8cea1cf172dd662ebe8eb3573ea1a25e19239 (diff)
Declared functions public
Diffstat (limited to 'FICS/formula.c')
-rw-r--r--FICS/formula.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/formula.c b/FICS/formula.c
index e7853b6..5108309 100644
--- a/FICS/formula.c
+++ b/FICS/formula.c
@@ -84,7 +84,7 @@ MoveIndexPastString(char *string, int *i, char *text)
return n;
}
-int
+PUBLIC int
GetRating(player *p, int gametype)
{
if (gametype == TYPE_BLITZ)
@@ -514,7 +514,7 @@ ScanForNumber(game *g, int clause, int *i, int op_type, int *token, int eval)
* side of an expression whose operator has precedence OpType(). If
* 'eval' is 0, just go to the end of an expression.
*/
-int
+PUBLIC int
CheckFormula(game *g, int clause, int *i, int op_type, int *result, int eval)
{
char *string = GetPlayersFormula(&parray[g->black], clause);