Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
IFDEF.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:
OS Develop
Development Platform:
WINDOWS
- IFDEF(1) Minix Programmer's Manual IFDEF(1)
- NAME
- ifdef - remove #ifdefs from a file
- SYNOPSIS
- ifdef [-t] [-dsymbol] [-Dsymbol] [-Usymbol] [-Isymbol] [file]
- OPTIONS
- -D Define symbol permanently
- -I Ignore symbol
- -U Undefine symbol permanently
- -d Define symbol. It may be #undef'ed later
- -t Produce a table of the symbols on stdout
- EXAMPLES
- ifdef -DUNIX file.c >newfile.c
- # Define UNIX
- ifdef -D_MINIX -UDOS <x.c >y.c
- # Define
- DESCRIPTION
- Ifdef allows conditional code [ #ifdef ... #endif ] to be selectively
- removed from C files, but at the same time leaving all other C
- preprocessor commands intact such as #define, #include etc. Input to
- ifdef is either the file named as the last argument, or stdin if no file
- is named. Output goes to stdout.
- Symbols may be defined with the -d or -D flags just like cpp, except that
- the latter option ignores subsequent #undefs. It is not permitted to
- give values to symbols. Similarly, -U undefines a symbol and ignores
- subsequent #definess. Symbols defined with -I are ignored; any #ifdef
- using an ignored symbol will be left intact.
- 1