geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
267 B

  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