https://github.com/wiseplat/wshash
https://github.com/wiseplat/wshash
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/wiseplat/wshash
- Owner: WISEPLAT
- License: lgpl-3.0
- Created: 2018-04-20T08:21:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-20T08:21:47.000Z (about 8 years ago)
- Last Synced: 2025-05-29T09:48:38.144Z (about 1 year ago)
- Language: C
- Size: 1.19 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/wiseplat/wshash)
[](https://ci.appveyor.com/project/debris/wshash-nr37r/branch/master)
# Wshash
For details on this project, please see the Wiseplat wiki:
https://github.com/wiseplat/wiki/wiki/Wshash
### Coding Style for C++ code:
Follow the same exact style as in [cpp-wiseplat](https://github.com/wiseplat/cpp-wiseplat/blob/develop/CodingStandards.txt)
### Coding Style for C code:
The main thing above all is code consistency.
- Tabs for indentation. A tab is 4 spaces
- Try to stick to the [K&R](http://en.wikipedia.org/wiki/Indent_style#K.26R_style),
especially for the C code.
- Keep the line lengths reasonable. No hard limit on 80 characters but don't go further
than 110. Some people work with multiple buffers next to each other.
Make them like you :)