Add basic commands and refactor the code
authorLukáš Jiřiště <gymnazium.jiriste@gmail.com>
Sun, 14 Jan 2024 16:34:41 +0000 (17:34 +0100)
committerLukáš Jiřiště <gymnazium.jiriste@gmail.com>
Sun, 14 Jan 2024 16:34:41 +0000 (17:34 +0100)
commit6ce27f8d4257d6b4f4419a5245a23ab6fb2b7459
tree1ed4685acadfd8e11ccf4f1bdae9fb60b9c9f0de
parent983f9ef2873715000e24fa104fdceda3adc7ba27
Add basic commands and refactor the code

Implement parsing of basic commands (help, next, add...)
 -Mostly (?) as wrapper around function from previous commit
 -It should be possible to do it in a much better way
Give the project some structure
 -split main.c
 -create src and inc directories
19 files changed:
Libft
Makefile
TODO
inc/FET_sim.h [new file with mode: 0644]
main.c [deleted file]
src/build_helper.c [new file with mode: 0644]
src/c_addfet.c [new file with mode: 0644]
src/c_addnode.c [new file with mode: 0644]
src/c_bind.c [new file with mode: 0644]
src/c_draw.c [new file with mode: 0644]
src/c_help.c [new file with mode: 0644]
src/c_next.c [new file with mode: 0644]
src/c_setnode.c [new file with mode: 0644]
src/colors.c [new file with mode: 0644]
src/main.c [new file with mode: 0644]
src/sim_main.c [new file with mode: 0644]
src/sim_node.c [new file with mode: 0644]
src/sim_state.c [new file with mode: 0644]
src/text.c [new file with mode: 0644]