open-insight/SYSPROG/STPROCINS/RTI_TEXT_EQUATES.txt
2024-03-25 15:17:34 -07:00

34 lines
1.2 KiB
Plaintext

compile insert rti_Text_Equates
/*
** Copyright (C) 1992-2016 Revelation Software Inc. All Rights Reserved **
Author : Mr C
Date : 16 Feb 2016
Purpose : Non-printable Text character equates
Comments
========
Amended Date Reason
======= ==== ======
Mr C 22 Feb 16 Added SPACE$
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#IFNDEF _RTI_TEXT_EQUATES_
#DEFINE _RTI_TEXT_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ CRLF$ to \0D0A\
equ CR$ to \0D\
equ LF$ to \0A\
equ TAB$ to \09\
equ SPACE$ to \20\
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ENDIF
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////