00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _SUPPORTKIT_STRINGUTILS_H_INCLUDED_
00014 #define _SUPPORTKIT_STRINGUTILS_H_INCLUDED_
00015
00021 #include <support/String.h>
00022 #include <support/Vector.h>
00023
00024 #if _SUPPORTS_NAMESPACE
00025 namespace palmos {
00026 namespace support {
00027 #endif
00028
00035
00037
00042 status_t StringSplit(const SString& srcStr, const SString& splitOn, SVector<SString>* strList, bool append = false);
00043
00045
00052 status_t StringSplit(const char* srcStr, int32_t srcStrLen, const char* splitOn, int32_t splitOnLen, SVector<SString>* strList, bool append = false);
00053
00055
00058 #if _SUPPORTS_NAMESPACE
00059 } }
00060 #endif
00061
00062 #endif //_SUPPORTKIT_STRINGUTILS_H_INCLUDED_