From 07dc3e0dd04e3d17eb2068f26855057b9c98d488 Mon Sep 17 00:00:00 2001 From: dockes Date: Fri, 5 Dec 2008 07:38:07 +0000 Subject: [PATCH] comment --- src/utils/smallut.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/utils/smallut.h b/src/utils/smallut.h index 01c62b8f..26e15eb8 100644 --- a/src/utils/smallut.h +++ b/src/utils/smallut.h @@ -16,7 +16,7 @@ */ #ifndef _SMALLUT_H_INCLUDED_ #define _SMALLUT_H_INCLUDED_ -/* @(#$Id: smallut.h,v 1.32 2008-11-19 10:06:49 dockes Exp $ (C) 2004 J.F.Dockes */ +/* @(#$Id: smallut.h,v 1.33 2008-12-05 07:38:07 dockes Exp $ (C) 2004 J.F.Dockes */ #include #include #include @@ -48,6 +48,9 @@ extern bool samecharset(const string &cs1, const string &cs2); * * Token delimiter is " \t\n" except inside dquotes. dquote inside * dquotes can be escaped with \ etc... + * Input is handled a byte at a time, things will work as long as space tab etc. + * have the ascii values and can't appear as part of a multibyte char. utf-8 ok + * but so are the iso-8859-x and surely others. */ extern bool stringToStrings(const string &s, list &tokens); extern bool stringToStrings(const string &s, vector &tokens);