Bringing ChocolateCaste-0.7 into the main branch.
[AROS-Contrib.git] / rexx / lstring / words.c
blob0a4e8d40bdd9a55a0e0c0915ff9f1d13444c56c6
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:20:58 bnv
8 * Initial Version
12 #include <lstring.h>
14 /* ----------------- Lwords ------------------ */
15 long
16 Lwords( const PLstr from )
18 long i=0,r=0;
20 L2STR(from);
21 for (;;) {
22 LSKIPBLANKS(*from,i);
23 if (i>=LLEN(*from)) return r;
24 r++;
25 LSKIPWORD(*from,i);
27 } /* Lwords */