- A CLI tool that converts number system.
- This will support binary, decimal, octal, and hexadecimal systems.
Features |
Completed |
Binary to Decimal |
✅ |
Binary to Octal |
✅ |
Binary to Hexadecimal |
✅ |
Decimal to Binary |
✅ |
Decimal to Octal |
✅ |
Decimal to Hexadecimal |
✅ |
Octal to Binary |
✅ |
Octal to Decimal |
✅ |
Octal to Hexadecimal |
TODO |
Hexadecimal to Binary |
TODO |
Hexadecimal to Decimal |
TODO |
Hexadecimal to Octal |
TODO |
- For easy search and navigation of codebase, install ctags.
# Index the codebase with ctags.
ctags -R *
# In Neovim/Vim search for file.
:tag <name>
- Below the are the development commands.
# Build and run the test.
make run-test bin=compute_binary_tests
# Build and run the program using GDB.
make run-gdb
# Build and run the program with Valgrind.
make run