/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* aplprint APL2 V1.0.0 ************************************************
* Called by gettcom to print a line. *
***********************************************************************/
#define INCLUDES STDIO+STRING
#include "includes.h"
void aplprint(s)
char *s;
{
Aplputch;
char ch;
while ('\0' != (ch = *s++))
aplputch(ch);
}