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
This commit is contained in:
Nick Mathewson
2019-11-03 15:15:07 -05:00
parent afc267e887
commit 7fc077ed25
68 changed files with 272 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
/**
@dir lib/string
@brief lib/string
**/