aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.172
1 files changed, 36 insertions, 36 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1 b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1
index 60b33cf..f9ee5a6 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1
+++ b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/ansi2knr.1
@@ -1,36 +1,36 @@
1.TH ANSI2KNR 1 "19 Jan 1996" 1.TH ANSI2KNR 1 "19 Jan 1996"
2.SH NAME 2.SH NAME
3ansi2knr \- convert ANSI C to Kernighan & Ritchie C 3ansi2knr \- convert ANSI C to Kernighan & Ritchie C
4.SH SYNOPSIS 4.SH SYNOPSIS
5.I ansi2knr 5.I ansi2knr
6[--varargs] input_file [output_file] 6[--varargs] input_file [output_file]
7.SH DESCRIPTION 7.SH DESCRIPTION
8If no output_file is supplied, output goes to stdout. 8If no output_file is supplied, output goes to stdout.
9.br 9.br
10There are no error messages. 10There are no error messages.
11.sp 11.sp
12.I ansi2knr 12.I ansi2knr
13recognizes function definitions by seeing a non-keyword identifier at the left 13recognizes function definitions by seeing a non-keyword identifier at the left
14margin, followed by a left parenthesis, with a right parenthesis as the last 14margin, followed by a left parenthesis, with a right parenthesis as the last
15character on the line, and with a left brace as the first token on the 15character on the line, and with a left brace as the first token on the
16following line (ignoring possible intervening comments). It will recognize a 16following line (ignoring possible intervening comments). It will recognize a
17multi-line header provided that no intervening line ends with a left or right 17multi-line header provided that no intervening line ends with a left or right
18brace or a semicolon. These algorithms ignore whitespace and comments, except 18brace or a semicolon. These algorithms ignore whitespace and comments, except
19that the function name must be the first thing on the line. 19that the function name must be the first thing on the line.
20.sp 20.sp
21The following constructs will confuse it: 21The following constructs will confuse it:
22.br 22.br
23 - Any other construct that starts at the left margin and follows the 23 - Any other construct that starts at the left margin and follows the
24above syntax (such as a macro or function call). 24above syntax (such as a macro or function call).
25.br 25.br
26 - Some macros that tinker with the syntax of the function header. 26 - Some macros that tinker with the syntax of the function header.
27.sp 27.sp
28The --varargs switch is obsolete, and is recognized only for 28The --varargs switch is obsolete, and is recognized only for
29backwards compatibility. The present version of 29backwards compatibility. The present version of
30.I ansi2knr 30.I ansi2knr
31will always attempt to convert a ... argument to va_alist and va_dcl. 31will always attempt to convert a ... argument to va_alist and va_dcl.
32.SH AUTHOR 32.SH AUTHOR
33L. Peter Deutsch <ghost@aladdin.com> wrote the original ansi2knr and 33L. Peter Deutsch <ghost@aladdin.com> wrote the original ansi2knr and
34continues to maintain the current version; most of the code in the current 34continues to maintain the current version; most of the code in the current
35version is his work. ansi2knr also includes contributions by Francois 35version is his work. ansi2knr also includes contributions by Francois
36Pinard <pinard@iro.umontreal.ca> and Jim Avera <jima@netcom.com>. 36Pinard <pinard@iro.umontreal.ca> and Jim Avera <jima@netcom.com>.