eteran / edb-debugger

edb is a cross-platform AArch32/x86/x86-64 debugger.
GNU General Public License v2.0
2.68k stars 323 forks source link

Unify the style of the code base #729

Closed eteran closed 4 years ago

eteran commented 4 years ago

The style of the codebase is kinda all over the place... I'd like to make an effort to unify the code base's style and try to adhere to the style guide more consistently.

https://github.com/eteran/edb-debugger/wiki/Style-Guide

eteran commented 4 years ago

It is worth noting that this will be an API breaking change if applied to plugins. I think that this is likely OK because frankly, I've seen very little evidence of 3rd party plugins in the wild, and the changes I have in mind would be trivial from an API point of view. Things like:

void private_init();

being changed to:

void privateInit();

etc...

eteran commented 4 years ago

I am working on this in this branch: https://github.com/eteran/edb-debugger/tree/style-fixup