Skip to content

Commit

Permalink
Merge a0041d1 into 102dae2
Browse files Browse the repository at this point in the history
  • Loading branch information
vejnar committed Apr 16, 2021
2 parents 102dae2 + a0041d1 commit 2249544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/trie.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ int recursive_count_nodes (node_t * node, int, int);

// Globals.
int ERROR = 0;
gstack_t * const TOWER_TOP;

int get_height(trie_t *trie) { return trie->info->height; }

Expand Down
2 changes: 1 addition & 1 deletion src/trie.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ typedef struct trie_t trie_t;
#define MAXBRCDLEN 1023 // Maximum barcode length.
#define GSTACK_INIT_SIZE 16 // Initial slots of 'gstack'.

gstack_t * const TOWER_TOP;
extern gstack_t * const TOWER_TOP;

int check_trie_error_and_reset (void);
int count_nodes (trie_t*);
Expand Down

0 comments on commit 2249544

Please sign in to comment.