**************************************************************************
* DBG042R3: Merge Data Lines
* Copyright (C) 2000 Martin Rowe <martin@dbg400.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
**************************************************************************
* Desc: The program accepts two input parameters and merges them into
* one output parameter. A character wiil be mapped if the corre-
* sponding location is blank (X'40').
*************************************************************************
E P#1 256 1
E P#2 256 1
**************************************************************************
C *ENTRY PLIST
C PARM P#IN1 256
C PARM P#IN2 256
C PARM P#OUT 256
**************************************************************************
* Load arrays from input parms
C MOVEAP#IN1 P#1 P
C MOVEAP#IN2 P#2 P
* Move all non blank characters from String 1 to String 2 if not occupied
B001 C 1 DO 256 #X 30
B002 C P#1,#X IFNE ' '
C P#2,#X ANDEQ' '
C MOVE P#1,#X P#2,#X
E002 C ENDIF
E001 C ENDDO
* Load output parameter & exit program
C MOVEAP#2 P#OUT P
C RETRN
**************************************************************************