diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-20 13:23:58 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | c81898d6a760e2057f0933c9da6160702a4d0f61 (patch) | |
| tree | f08bc685da10ec7f9201f983e1b5528f388f7f88 /src/ctaklm.c | |
| parent | c1b4600ee67c651a79f682600fa7f2676ffa916e (diff) | |
In-lined as much as a i dare
Diffstat (limited to 'src/ctaklm.c')
| -rw-r--r-- | src/ctaklm.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/ctaklm.c b/src/ctaklm.c index a198d2c..eb2a788 100644 --- a/src/ctaklm.c +++ b/src/ctaklm.c @@ -296,8 +296,9 @@ load_ptn(const char* fn) { static float sum_depth, num_check; -static void -dot(const uint8_t depth) { +// Set up output function for ct1986 +inline void +ct1986_display_progress(const uint8_t depth) { sum_depth += depth; num_check += 1; if (depth == 0) { @@ -413,15 +414,12 @@ main(int argc, char **argv) { (void)(argc); (void)(argv); - // Set up output function for ct1986 - ct1986_display_progress = ˙ - human = 0; search_depth = 3; new_game(5); char *line = NULL; - ssize_t read; + ssize_t read = -1; size_t alloc_size; for (int playing = 1; playing;) { |
