HACKING.md (267B)
1# libssh2 source code style guide 2 3- 4 level indent 4- spaces-only (no tabs) 5- open braces on the if/for line: 6 7 ``` 8 if (banana) { 9 go_nuts(); 10 } 11 ``` 12 13- keep source lines shorter than 80 columns 14- See `libssh2-style.el` for how to achieve this within Emacs