HACKING 267 B

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