Fix for initialization of scalos preferences library. Library is now loaded only...
[AROS-Contrib.git] / rexx / lstring / upper.c
blobe77c2a9e4e9c312045f1c6bc036fe9f1262ac5bd
1 /*
2 * $Header$
3 * $Log$
4 * Revision 1.1 2001/04/04 05:43:38 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.1 1998/07/02 17:18:00 bnv
8 * Initial Version
12 #include <lstring.h>
14 /* --------------- Lupper ------------------ */
15 void
16 Lupper( const PLstr s )
18 size_t i;
19 L2STR(s);
20 for (i=0; i<LLEN(*s); i++)
21 LSTR(*s)[i] = l2u[ (byte) LSTR(*s)[i] ];
22 } /* Lupper */