blob: d6211ffd0cf461d9c8bbbb9103289e1f69b14c07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# How to submit a Pull Request to AFLplusplus
Each modified source file, before merging, must be formatted.
```
make code-formatter
```
This should be fine if you modified one of the file already present in the
project, otherwise run:
```
./.custom-format.py -i file-that-you-have-created.c
```
|