summaryrefslogtreecommitdiff
path: root/src/ansi2knr.1
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-08-02 04:26:31 +0000
committerJim Meyering <jim@meyering.net>1995-08-02 04:26:31 +0000
commitb1ab76f3e4d60d017865c87ace385490d1592509 (patch)
treefb2e2e9b3b50e6d7236be826bb7c65a26d908efc /src/ansi2knr.1
parentccb00b7ef96a8e8a45d5eca0953ebef43be5c8b8 (diff)
downloadcoreutils-b1ab76f3e4d60d017865c87ace385490d1592509.tar.xz
.
Diffstat (limited to 'src/ansi2knr.1')
-rw-r--r--src/ansi2knr.119
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ansi2knr.1 b/src/ansi2knr.1
new file mode 100644
index 000000000..434ce8f04
--- /dev/null
+++ b/src/ansi2knr.1
@@ -0,0 +1,19 @@
+.TH ANSI2KNR 1 "31 December 1990"
+.SH NAME
+ansi2knr \- convert ANSI C to Kernighan & Ritchie C
+.SH SYNOPSIS
+.I ansi2knr
+input_file output_file
+.SH DESCRIPTION
+If no output_file is supplied, output goes to stdout.
+.br
+There are no error messages.
+.sp
+.I ansi2knr
+recognizes functions by seeing a non-keyword identifier at the left margin, followed by a left parenthesis, with a right parenthesis as the last character on the line. It will recognize a multi-line header if the last character on each line but the last is a left parenthesis or comma. These algorithms ignore whitespace and comments, except that the function name must be the first thing on the line.
+.sp
+The following constructs will confuse it:
+.br
+ - Any other construct that starts at the left margin and follows the above syntax (such as a macro or function call).
+.br
+ - Macros that tinker with the syntax of the function header.