summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libjpeg/ansi2knr.1
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-02-20 13:20:44 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-02-20 13:20:44 (GMT)
commitce276c42d95f8a7e83da371f33d9da32986a30eb (patch)
tree7a088008a27c86d5d53a988cf9567244226b3fc4 /src/3rdparty/libjpeg/ansi2knr.1
parentd05f83919949fd9604e6d96858a8404c9a580def (diff)
parent06f96dbdcaeeb82d57b8d1f23cbbd498ddfc88c2 (diff)
downloadQt-ce276c42d95f8a7e83da371f33d9da32986a30eb.zip
Qt-ce276c42d95f8a7e83da371f33d9da32986a30eb.tar.gz
Qt-ce276c42d95f8a7e83da371f33d9da32986a30eb.tar.bz2
Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-2: license doc updated for libtiff 3.9.2 Our configuration and build modifications to libtiff Add libtiff 3.9.2 Update license doc, .pro file and qjpeghandler for libjpeg 8 Our configuration and build modifications to libjpeg Add libjpeg 8 Delete libjpeg 6b Delete libtiff 3.8.2
Diffstat (limited to 'src/3rdparty/libjpeg/ansi2knr.1')
-rw-r--r--src/3rdparty/libjpeg/ansi2knr.136
1 files changed, 36 insertions, 0 deletions
diff --git a/src/3rdparty/libjpeg/ansi2knr.1 b/src/3rdparty/libjpeg/ansi2knr.1
new file mode 100644
index 0000000..f9ee5a6
--- /dev/null
+++ b/src/3rdparty/libjpeg/ansi2knr.1
@@ -0,0 +1,36 @@
+.TH ANSI2KNR 1 "19 Jan 1996"
+.SH NAME
+ansi2knr \- convert ANSI C to Kernighan & Ritchie C
+.SH SYNOPSIS
+.I ansi2knr
+[--varargs] 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 function definitions 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, and with a left brace as the first token on the
+following line (ignoring possible intervening comments). It will recognize a
+multi-line header provided that no intervening line ends with a left or right
+brace or a semicolon. 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
+ - Some macros that tinker with the syntax of the function header.
+.sp
+The --varargs switch is obsolete, and is recognized only for
+backwards compatibility. The present version of
+.I ansi2knr
+will always attempt to convert a ... argument to va_alist and va_dcl.
+.SH AUTHOR
+L. Peter Deutsch <ghost@aladdin.com> wrote the original ansi2knr and
+continues to maintain the current version; most of the code in the current
+version is his work. ansi2knr also includes contributions by Francois
+Pinard <pinard@iro.umontreal.ca> and Jim Avera <jima@netcom.com>.