pcs/schars.h

18 lines
746 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/************************************************************************/
/* Scheme Special Character Declarations */
/* */
/* Copyright 1985 by Texas Instruments Incorporated. */
/* All Rights Reserved. */
/************************************************************************/
#define test_num 8 /* the number of "special" characters */
/* Text Representations for Special Characters */
static char *test_string[test_num] = {"NEWLINE", "SPACE", "RUBOUT",
"PAGE", "TAB", "BACKSPACE",
"RETURN", "ESCAPE"};
/* Values for Special Characters */
static char test_char[test_num] = {'\n', ' ', '\177',
'\f', '\t', '\b',
'\r', '\033'};