Function: gomoku-index-to-x
gomoku-index-to-x is a byte-compiled function defined in gomoku.el.gz.
Signature
(gomoku-index-to-x INDEX)
Documentation
Return corresponding x-coord of board INDEX.
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-index-to-x (index)
"Return corresponding x-coord of board INDEX."
(% index (1+ gomoku-board-width)))