|
tsort(1) -- topological sort of a directed graph
|
tsort takes a list of pairs of node names representing directed arcs in a graph and prints the nodes in topological order on standard output. Input is taken from the named file, or from standard input... |
unifdef(1) -- remove ifdef'ed lines
|
unifdef is useful for removing ifdef'ed lines from a file while otherwise leaving the file alone. unifdef acts on #ifdef, #ifndef, #else, and #endif lines, and it knows only enough about C to know wh... |
|
vgrind(1) -- grind nice listings of programs
|
vgrind formats the program sources which are arguments in a nice style using troff(1). Comments are placed in italics, keywords in bold face, and the name of the current function is listed down the ma... |
xstr(1) -- extract strings from C programs to implement shared strings
|
xstr maintains a file strings into which strings in component parts of a large program are hashed. These strings are replaced with references to this common area. This serves to implement shared const... |
yacc(1) -- an LALR(1) parser generator
|
yacc reads the grammar specification in the file filename and generates an LR(1) parser for it. The parsers consist of a set of LALR(1) parsing tables and a driver routine written in the C programming... |