forked from ulthiel/polyglot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathline.h
More file actions
32 lines (18 loc) · 656 Bytes
/
line.h
File metadata and controls
32 lines (18 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// line.h
#ifndef LINE_H
#define LINE_H
// includes
#include "board.h"
#include "move.h"
#include "util.h"
// constants
#define LineSize 256
// functions
extern bool line_is_ok (const move_t line[]);
extern void line_clear (move_t line[]);
extern void line_copy (move_t dst[], const move_t src[]);
extern bool line_from_can (move_t line[], const board_t * board, const char string[], int size);
extern bool line_to_can (const move_t line[], const board_t * board, char string[], int size);
extern bool line_to_san (const move_t line[], const board_t * board, char string[], int size);
#endif // !defined LINE_H
// end of line.h