C/C++
doxygen.txt
Associated article: Examining Doxygen
Tags: C/C++ Design
Published source code and related files accompanying the article by Al Williams in which he examines Doxygen, is a tool for generating formatted documentation from comment blocks in the source code. Also see DOXYGEN.ZIP.
Examining Doxygen
by Al Williams
Listing One
BEGIN {
cflag=0; # comment in progress
ocflag=0; # old comment in progress
inblock=0; # block flag
afterbrace=0; #brace at end?
}
# user function to make a string have no regexp metachars
function escape(s) {
gsub(/([[]^$.|()*+?{}])/,"&&...


