summaryrefslogtreecommitdiffstats
path: root/index.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2023-07-16 15:41:57 +0200
committerpgen <p.gen.progs@gmail.com>2023-07-16 15:41:57 +0200
commita5a29d3b9a193fa4f8379f062934e837ce78dbf3 (patch)
treeef62df238c6be1c70d33b10aea85d39afa8223d5 /index.h
parentc009e41f7afda69b04c8034c669d58f9a67e1d72 (diff)
Add comments and some minor changes
- variable renaming - unsigned long long -> long
Diffstat (limited to 'index.h')
-rw-r--r--index.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.h b/index.h
index bcbbd72..b7e62e6 100644
--- a/index.h
+++ b/index.h
@@ -46,8 +46,8 @@ void
insert_sorted_index(long ** array, long * size, long * filled, long value);
void
-insert_sorted_ptr(tst_node_t *** array, unsigned long long * size,
- unsigned long long * filled, tst_node_t * ptr);
+insert_sorted_ptr(tst_node_t *** array, long * size, long * filled,
+ tst_node_t * ptr);
/* Ternary node structure */
/* """""""""""""""""""""" */
@@ -64,9 +64,9 @@ struct tst_node_s
/* """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" */
struct sub_tst_s
{
- tst_node_t ** array;
- unsigned long long size;
- unsigned long long count;
+ tst_node_t ** array;
+ long size;
+ long count;
};
#endif