diff options
| author | Simon Tatham <anakin@pobox.com> | 2018-11-13 21:44:02 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2018-11-13 21:48:24 +0000 |
| commit | a550ea0a47374705a37f36b0f05ffe9e4c8161fb (patch) | |
| tree | a4664ac4d90cdeb581ddd2bf41ccda7b0d45855c /tree234.h | |
| parent | 064da876828ea3079d5d7be5849b693f4d55364b (diff) | |
| download | puzzles-a550ea0a47374705a37f36b0f05ffe9e4c8161fb.zip puzzles-a550ea0a47374705a37f36b0f05ffe9e4c8161fb.tar.gz puzzles-a550ea0a47374705a37f36b0f05ffe9e4c8161fb.tar.bz2 puzzles-a550ea0a47374705a37f36b0f05ffe9e4c8161fb.tar.xz | |
Replace TRUE/FALSE with C99 true/false throughout.
This commit removes the old #defines of TRUE and FALSE from puzzles.h,
and does a mechanical search-and-replace throughout the code to
replace them with the C99 standard lowercase spellings.
Diffstat (limited to 'tree234.h')
| -rw-r--r-- | tree234.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -164,9 +164,9 @@ int count234(tree234 *t); /* * Split a tree234 into two valid tree234s. * - * splitpos234 splits at a given index. If `before' is TRUE, the + * splitpos234 splits at a given index. If `before' is true, the * items at and after that index are left in t and the ones before - * are returned; if `before' is FALSE, the items before that index + * are returned; if `before' is false, the items before that index * are left in t and the rest are returned. * * split234 splits at a given key. You can pass any of the |