S
s0suk3
I'm developing a project which I'm trying to keep as organized as
possible. Since C doesn't support classes, I've been trying to make do
mostly with structs and functions that operate on them. However,
sometimes some of the "higher-level" modules contain functions that
map more or less directly to functions calls in "lower-level" modules.
So I've been having trouble naming these such functions, since ideally
both of them (the one in the higher-level module and the one in the
lower-level module) should have the same names. So, are there any
naming conventions for these cases? Or are there any alternatives for
doing what I'm doing?
Thanks,
Sebastian
possible. Since C doesn't support classes, I've been trying to make do
mostly with structs and functions that operate on them. However,
sometimes some of the "higher-level" modules contain functions that
map more or less directly to functions calls in "lower-level" modules.
So I've been having trouble naming these such functions, since ideally
both of them (the one in the higher-level module and the one in the
lower-level module) should have the same names. So, are there any
naming conventions for these cases? Or are there any alternatives for
doing what I'm doing?
Thanks,
Sebastian