1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-07-31 00:03:08 +03:00

docs: move INSTALL, AUTHORS, HACKING and TODO to docs/

And with this, cleanup README to be shorter and mention the new source
code home.
This commit is contained in:
Daniel Stenberg
2015-03-07 11:32:22 +01:00
parent 5fcbb168b8
commit 8bb6cf7f95
7 changed files with 332 additions and 87 deletions

13
docs/HACKING Normal file
View File

@ -0,0 +1,13 @@
libssh2 source code style guide:
- 4 level indent
- spaces-only (no tabs)
- open braces on the if/for line:
if (banana) {
go_nuts();
}
- keep source lines shorter than 80 columns
- See libssh2-style.el for how to achieve this within Emacs