- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
ansi2knr.1
资源名称:jpeg-6b.zip [点击查看]
上传用户:mkymky1985
上传日期:2021-03-05
资源大小:740k
文件大小:1k
源码类别:
压缩解压
开发平台:
Unix_Linux
- .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>.