fix remapping behavior. Remapping is only necessary if we are rendering on the workbe...
[AROS-Contrib.git] / rexx / lstring / charout.c
blob26e02a60a029ebefde517d50322a3a4e2f7eaa97
1 /*
2 * $Header$
3 * $Log$
4 * Revision 1.1 2001/04/04 05:43:37 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.2 1999/11/26 09:53:28 bnv
8 * Changed: To use the new macros.
10 * Revision 1.1 1998/07/02 17:17:00 bnv
11 * Initial revision
15 #include <lstring.h>
17 /* ---------------- Lcharout ------------------- */
18 void
19 Lcharout( FILEP f, const PLstr line, const long start )
21 if (start>=0)
22 FSEEK(f,start,SEEK_SET);
24 Lwrite(f,line,FALSE);
25 } /* Lcharout */