d5e63c8d55
- XHTML output support, more human-readable HTML output - end-of-line white space detected in all lines - fix subtle bug for list displays in some modes - fix column handling - full support for \f etc - imporoved column handling - various other bug fixes - compatiblity support for strlcat/strlcpy - groff-compatible .Xr [backed out]
9 lines
100 B
C
9 lines
100 B
C
#include <string.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
strlcat(argv[0], argv[1], 10);
|
|
return 0;
|
|
}
|