fbook_init(): Remove bogus comment
[pachi.git] / tactics / nakade.h
blob34741e7bcc9cac33de5edb47ebac39e7503d603c
1 #ifndef PACHI_TACTICS_NAKADE_H
2 #define PACHI_TACTICS_NAKADE_H
4 /* Piercing eyes. */
6 #include "board.h"
7 #include "debug.h"
9 /* Find an eye-piercing point within the @around area of empty board
10 * internal to group of color @color.
11 * Returns pass if the area is not a nakade shape or not internal. */
12 coord_t nakade_point(struct board *b, coord_t around, enum stone color);
14 #endif