blob: 6290b5c0292cd2e09cc4beef7906cbf94cca1b99 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stdio.h>
#include "board.h"
#include "voerbak.h"
int diewertje(Board *b) {
verbosity >= 2 && printf("Got a diewertje request, from a board that's %dx%d\n", b->width, b->height);
return 2;
}
|