2 * Sherlock Library -- Word Splitting
4 * (c) 1997 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
11 #include "lib/chartype.h"
14 wordsplit(byte *src, byte **dst, uns max)
30 while (*src && *src != '"')
38 while (*src && !Cspace(*src))