diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-03 15:15:07 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-04 07:40:14 -0500 |
commit | 7fc077ed2558c8174237388d00924fd139f786ce (patch) | |
tree | 164c006fc6396ce6fc09b33ea74130a2de59d60e /src/tools | |
parent | afc267e8872f0cb780d8c8bd7c0ea4e1d1683a87 (diff) | |
download | tor-7fc077ed2558c8174237388d00924fd139f786ce.tar.gz tor-7fc077ed2558c8174237388d00924fd139f786ce.zip |
Add stub directory-level documentation for most source directories
This includes app, core, feature, lib, and tools, but excludes
ext, test, and trunnel.
This was generated by the following shell script:
cd src
for dname in $(find lib core feature app tools -type d |grep -v \\.deps$); do
keyword="$(echo "$dname" |sed -e "s/\//_/" )"
target="${dname}/${keyword}.dox"
echo "$target"
cat <<EOF >"$target"
/**
@dir ${dname}
@brief ${dname}
**/
EOF
git add "$target"
done
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/tools.dox | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/tools.dox b/src/tools/tools.dox new file mode 100644 index 0000000000..9f73d1c9a0 --- /dev/null +++ b/src/tools/tools.dox @@ -0,0 +1,4 @@ +/** +@dir tools +@brief tools +**/ |