mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Start writing a how to review doc
This commit is contained in:
parent
7dbcdfab58
commit
609c1e8870
@ -141,6 +141,9 @@ sure that we worked on MSVC6.
|
||||
We don't use strcat or strcpy or sprintf of any of those notoriously broken
|
||||
old C functions. Use strlcat, strlcpy, or tor_snprintf/tor_asprintf instead.
|
||||
|
||||
We don't call memcmp() directly. Use fast_memeq(), fast_memneq(),
|
||||
tor_memeq(), or tor_memneq() for most purposes.
|
||||
|
||||
Functions not to write
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
@ -43,6 +43,7 @@ EXTRA_DIST+= doc/asciidoc-helper.sh \
|
||||
doc/HACKING/CodingStandards.txt \
|
||||
doc/HACKING/GettingStarted.txt \
|
||||
doc/HACKING/HelpfulTools.txt \
|
||||
doc/HACKING/HowToReview.txt \
|
||||
doc/HACKING/ReleasingTor.txt \
|
||||
doc/HACKING/WritingTests.txt
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user