WvStreams
wvstringtable.cc
1 /*
2  * Worldvisions Weaver Software:
3  * Copyright (C) 1997-2002 Net Integration Technologies, Inc.
4  *
5  * Some helper functions for WvStringTable.
6  */
7 #include "wvstringtable.h"
8 #include "strutils.h"
9 
10 
11 WvString WvStringTable::join(const char *joinchars) const
12 {
13  return ::strcoll_join(*this, joinchars);
14 }
15 
16 
17 void WvStringTable::split(WvStringParm s, const char *splitchars,
18  int limit)
19 {
20  return ::strcoll_split(*this, s, splitchars, limit);
21 }
22 
23 void WvStringTable::splitstrict(WvStringParm s, const char *splitchars,
24  int limit)
25 {
26  return ::strcoll_splitstrict(*this, s, splitchars, limit);
27 }