~ubuntu-branches/ubuntu/precise/arj/precise-security

« back to all changes in this revision

Viewing changes to ansi.h

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2004-06-27 08:07:09 UTC
  • Revision ID: james.westby@ubuntu.com-20040627080709-1gkxm72ex66gkwe4
Tags: upstream-3.10.21
ImportĀ upstreamĀ versionĀ 3.10.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: ansi.h,v 1.1.1.1 2002/03/27 23:25:18 andrew_belov Exp $
 
3
 * ---------------------------------------------------------------------------
 
4
 * Prototypes of the functions located in ANSI.C are declared here.
 
5
 *
 
6
 */
 
7
 
 
8
#ifndef ANSI_INCLUDED
 
9
#define ANSI_INCLUDED
 
10
 
 
11
/* Standard ANSI sequence identifiers */
 
12
 
 
13
#define ANSI_ESC                  27    /* Escape character */
 
14
#define ANSI_BRACKET             '['    /* Used to identify ANSI sequences */
 
15
#define ANSI_DELIMITER           ';'    /* Parameter list delimiter */
 
16
 
 
17
/* Prototypes */
 
18
 
 
19
#if TARGET==OS2
 
20
 #define display_ansi(c) putchar(c)
 
21
#else
 
22
 void display_ansi(char c);
 
23
#endif
 
24
 
 
25
#endif
 
26