mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 00:01:33 +00:00
25 lines
761 B
Markdown
25 lines
761 B
Markdown
# How to submit a Pull Request to AFLplusplus
|
|
|
|
All contributions (pull requests) must be made against our `dev` branch.
|
|
|
|
Each modified source file, before merging, must be formatted.
|
|
|
|
```
|
|
make code-format
|
|
```
|
|
|
|
This should be fine if you modified one of the files already present in the
|
|
project, or added a file in a directory we already format, otherwise run:
|
|
|
|
```
|
|
./.custom-format.py -i file-that-you-have-created.c
|
|
```
|
|
|
|
Regarding the coding style, please follow the AFL style.
|
|
No camel case at all and use AFL's macros wherever possible
|
|
(e.g. WARNF, FATAL, MAP_SIZE, ...).
|
|
|
|
Remember that AFLplusplus has to build and run on many platforms, so
|
|
generalize your Makefiles/GNUmakefile (or your patches to our pre-existing
|
|
Makefiles) to be as generic as possible.
|