diff options
| author | mo khan <mo.khan@gmail.com> | 2020-08-03 14:27:51 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-08-03 14:27:51 -0600 |
| commit | ff6613d40afa4eecf8c1ec49ae75ee38daf44e03 (patch) | |
| tree | 25b4c715b71e67964d62efbb4ae7e1cc899f7745 /src/02/04/list.c | |
| parent | e291a2c6b57af1889010529031e07d5236fc1570 (diff) | |
Store Tuples in the hash
Diffstat (limited to 'src/02/04/list.c')
| -rw-r--r-- | src/02/04/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/02/04/list.c b/src/02/04/list.c index c9b2db7..3551a6e 100644 --- a/src/02/04/list.c +++ b/src/02/04/list.c @@ -41,7 +41,7 @@ int list_size(Node *head) { return i; } -void inspect(Node *self) { +void list_inspect(Node *self) { if (!self) return; |
