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