librsync
2.0.2
|
Instructions and conventions for people wanting to work on librsync. Please consider these guidelines even if you're doing your own fork.
The prefered style for code is equivalent to using GNU indent with the following arguments;
```Shell $ indent -linux -nut -i4 -ppi2 -l80 -lc80 -fc1 -fca -sob ```
The preferred style for non-docbook comments are as follows;
```C
/*= | A short poem that | shall never ever be | reformated or reindented */ /* Single line comment indented to match code indenting. */ /* Blank line delimited paragraph multi-line comments. Without leading stars, or blank line comment delimiters. */ int a; /* code line comments */
```
The preferred style for docbook comments is javadoc with autobrief as follows;
```C /**