An open API service indexing awesome lists of open source software.

https://github.com/claudemuller/hashtable.c

A hash table implementation in C
https://github.com/claudemuller/hashtable.c

c data-structures hashmap hashtable

Last synced: 12 months ago
JSON representation

A hash table implementation in C

Awesome Lists containing this project

README

          

# Hash Table

A naive hash table implementation written in C.

# Requirements

- [gcc](https://gcc.gnu.org/)
- [make](https://www.gnu.org/software/make/)

# Build

```bash
make build
```

# Run

```bash
make run
```

# Build a Debug Binary

```bash
make debug-build
```

# Start `lldb` or `gdb` With Debug Binary

```bash
make debug
```