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
ascii.h
Package: brlcad-7.14.0.zip [view]
Upload User: liulanzhi
Upload Date: 2016-08-15
Package Size: 56481k
Code Size: 1k
Category:
WinSock-NDIS
Development Platform:
Visual C++
- /* A S C I I . H
- * BRL-CAD
- *
- * Copyright (c) 2004-2008 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
- /** @file ascii.h
- * Author: Gary S. Moss
- */
- #define NUL '00'
- #define SOH '01'
- #define STX '02'
- #define INTR '03'
- #define EOT '04'
- #define ACK '06'
- #define BEL '07'
- #define BS '10'
- #define HT '11'
- #define LF '12'
- #define FF '14'
- #define CR '15'
- #define DLE '20'
- #define DC1 '21'
- #define DC2 '22'
- #define DC3 '23'
- #define DC4 '24'
- #define KILL '25'
- #define CAN '30'
- #define ESC '33'
- #define GS '35'
- #define RS '36'
- #define US '37'
- #define SP '40'
- #define DEL '177'
- #define Ctrl(chr) ((int)chr&037)
- /*
- * Local Variables:
- * mode: C
- * tab-width: 8
- * indent-tabs-mode: t
- * c-file-style: "stroustrup"
- * End:
- * ex: shiftwidth=4 tabstop=8
- */