File: random_board.h

package info (click to toggle)
gbatnav 0.74.0-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,584 kB
  • ctags: 698
  • sloc: ansic: 6,333; sh: 4,996; makefile: 363; sed: 93
file content (34 lines) | stat: -rw-r--r-- 445 bytes parent folder | download
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
32
33
34
#ifndef __BN_RANDOM__
# define __BN_RANDOM__

# ifdef __cplusplus
extern "C" {
# endif __cplusplus

void
generar( void );

gint
posible( gint x, gint y, gint d, gint t);

void
buscar_poscicion( gint x, gint y, gint d, gint t);

gint
tamano( gint i );

void
poner_barco( gint x, gint y, gint d, gint t);

gint
entra( gint x, gint y, gint d, gint t);

gint
vacio( gint x, gint y);

# ifdef __cplusplus
}
# endif __cplusplus


#endif __BN_RANDOM__