]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - gomoku/stoc.c
cgram: add advanced cursor movement with tab, shift+tab, return
[bsdgames-darwin.git] / gomoku / stoc.c
index 5311fb2211d3373b875108cbc85ee40176647add..c7b1eff896193e0b106cc4cf44be53e2ffd36617 100644 (file)
@@ -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;