ctoman revision 499b34cea04a46823d003d4c0520c8b03e8513cb
#
# Copyright (C) 2000, 2001 Internet Software Consortium.
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: ctoman,v 1.6 2001/01/09 21:47:09 bwelling Exp $
#
# ctoman - an awk program that makes a passable job of
# converting ISC BIND9 C files into template
# man pages
# Author: Jim Reid 1/6/00
#
# skip typedefs
/typedef/ { next }
# skip initialisations: lines ending in a semicolon
$0 ~ /;$/ { next }
# function return types
# #include lines
/#include/ { while ((NF ==0) || ((NF > 0) && $0 ~ /#include/)) {
}
}
# function names and argument prototypes
/^[a-z]/ && $0 ~ /\(/ {
str= $0
next
str += $0
}
}
#END { for (i = 1; i < inc; i++) print i, inclist[i] }
END {
print
for (i = 1; i < fnc - 1; i++)
print ".Nd XXX"
print ".Sh SYNOPSIS"
for (i = 1; i < inc; i++)
for (k = 2; k <= j; k++)
print ".Fc"
}
print ".Sh DESCRIPTION"
print ".Sh RETURN VALUES"
print ".Sh SEE ALSO"
print ".Sh BUGS"
}