X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/7e3d1e2e5930a9b9e295b12b5a0bff07e8cd85b3..b651ad4a8509e0f72f9c8f416dc02f3669672b35:/gomoku/stoc.c diff --git a/gomoku/stoc.c b/gomoku/stoc.c index 5311fb22..c7b1eff8 100644 --- a/gomoku/stoc.c +++ b/gomoku/stoc.c @@ -1,4 +1,4 @@ -/* $NetBSD: stoc.c,v 1.10 2009/06/04 05:27:04 dholland Exp $ */ +/* $NetBSD: stoc.c,v 1.12 2009/08/12 06:19:17 dholland Exp $ */ /* * Copyright (c) 1994 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)stoc.c 8.1 (Berkeley) 7/24/94"; #else -__RCSID("$NetBSD: stoc.c,v 1.10 2009/06/04 05:27:04 dholland Exp $"); +__RCSID("$NetBSD: stoc.c,v 1.12 2009/08/12 06:19:17 dholland Exp $"); #endif #endif /* not lint */ @@ -59,6 +59,9 @@ static const struct mvstr mv[] = { { -1, 0 } }; +static int lton(int); + + /* * Turn the spot number form of a move into the character form. */ @@ -71,7 +74,7 @@ stoc(int s) for (i = 0; mv[i].m_code >= 0; i++) if (s == mv[i].m_code) return(mv[i].m_text); - sprintf(buf, "%c%d", letters[s % BSZ1], s / BSZ1); + snprintf(buf, sizeof(buf), "%c%d", letters[s % BSZ1], s / BSZ1); return(buf); } @@ -97,7 +100,7 @@ ctos(const char *mp) /* * Turn a letter into a number. */ -int +static int lton(int c) { int i;