summaryrefslogtreecommitdiffstats
path: root/lib/ansi2knr.1
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-01-27 21:29:38 +0000
committerJim Meyering <jim@meyering.net>1999-01-27 21:29:38 +0000
commit9acb5c85febed10014f6a78ce9867631f6a8c5c8 (patch)
tree341b0a6cbaf321edc33f3da61c908c10722b9e66 /lib/ansi2knr.1
parenta8284194a9040775b36ab6fe1fe0d308ef9d1a3e (diff)
downloadidutils-9acb5c85febed10014f6a78ce9867631f6a8c5c8.tar.gz
idutils-9acb5c85febed10014f6a78ce9867631f6a8c5c8.tar.bz2
idutils-9acb5c85febed10014f6a78ce9867631f6a8c5c8.zip
.
Diffstat (limited to 'lib/ansi2knr.1')
-rw-r--r--lib/ansi2knr.119
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/ansi2knr.1 b/lib/ansi2knr.1
deleted file mode 100644
index 434ce8f..0000000
--- a/lib/ansi2knr.1
+++ /dev/null
@@ -1,19 +0,0 @@
-.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.