1 /* 2 swmiscjr - SW miscellaneous 3 4 Copyright (C) 1984-2003 David L. Clark. 5 This program is free software; you can redistribute it and/or modify it under 6 the terms of the GNU General Public License as published by the Free Software 7 Foundation; either version 2 of the License, or (at your option) any later 8 version. This program is distributed in the hope that it will be useful, 9 but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 10 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11 more details. You should have received a copy of the GNU General Public 12 License along with this program; if not, write to the Free Software Foundation, 13 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 14 15 Author: Dave Clark 16 17 Modification History: 18 84-07-23 Development 19 87-03-09 Microsoft compiler. 20 2003-01-27 GNU General Public License 21 */ 22 #include "sw.h" 23 24 25 26 27 puts( sp ) 28 char *sp; 29 { 30 register char *s; 31 32 s = sp; 33 while( *s ) 34 swputc( *s++ ); 35 } 36 ÿ