]> Kevux Git Server - fll/commit
Update: Relocate fake_main_t position in function arguments and make it a constant...
authorKevin Day <thekevinday@gmail.com>
Sun, 19 Dec 2021 18:36:24 +0000 (12:36 -0600)
committerKevin Day <thekevinday@gmail.com>
Sun, 19 Dec 2021 18:36:24 +0000 (12:36 -0600)
commiteb27d11619b27b31f30a9ee7cdf8b4c5cd78e249
treeddf1ad68a3002477e58a9fd9681e04e1660c71bf
parent2e21a1c549ea753be7175a6fd13f8a92c8ae5264
Update: Relocate fake_main_t position in function arguments and make it a constant pointer.

The standard practice is all constants on the left and all updatable variables on the right of a functions parameters.

At some point I switched to passing the structures as a pointer rather than directly.
For these, I made them pointer constants.
That is, the pointer itself is constant but what the pointer is pointing to is not.

This allowed for me to move this type further to the left.
Keeping the main data and the fake data on the left side of the functions is a lot more consistent.
level_3/fake/c/private-make-load_fakefile.h
level_3/fake/c/private-make-load_parameters.h
level_3/fake/c/private-make-operate.c
level_3/fake/c/private-make-operate.h
level_3/fake/c/private-make.c
level_3/fake/c/private-make.h