Wunst / asternix

Yet another UNIX clone (OS for x86)
GNU General Public License v3.0
1 stars 0 forks source link

Decide on code style #11

Open Wunst opened 9 months ago

Wunst commented 9 months ago

Not only use a tool such as clang-format, but also stuff like loop style: Do we do

for (int i = 0; i < n; i++)

or

while (n--)

? Or how exactly do we pass around errors (we kind of have a system for the fs code but the errors aren't really getting handled anywhere)? Can we abstract common structures such as linked lists?