summaryrefslogtreecommitdiff
path: root/huffman.c
diff options
context:
space:
mode:
Diffstat (limited to 'huffman.c')
-rw-r--r--huffman.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/huffman.c b/huffman.c
index 4ef7259..e9b1e0d 100644
--- a/huffman.c
+++ b/huffman.c
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
+#include <stdbool.h>
#include <string.h>
#include <math.h>
#include <limits.h>
@@ -71,7 +72,7 @@ DoHuffman(void)
char* plaintext = NULL;
clock_t total_time = 0;
int iterations = 0;
- static int is_adjusted = FALSE;
+ static bool is_adjusted = false;
static int loops = 100;
/*
@@ -132,8 +133,8 @@ DoHuffman(void)
/*
** See if we need to perform self adjustment loop.
*/
- if (is_adjusted == FALSE) {
- is_adjusted = TRUE;
+ if (is_adjusted == false) {
+ is_adjusted = true;
/*
** Do self-adjustment. This involves initializing the
** # of loops and increasing the loop count until we