Switch to side-by-side view

--- a/src/utils/smallut.h
+++ b/src/utils/smallut.h
@@ -1,6 +1,6 @@
 #ifndef _SMALLUT_H_INCLUDED_
 #define _SMALLUT_H_INCLUDED_
-/* @(#$Id: smallut.h,v 1.8 2005-11-24 07:16:16 dockes Exp $  (C) 2004 J.F.Dockes */
+/* @(#$Id: smallut.h,v 1.9 2005-11-25 08:50:39 dockes Exp $  (C) 2004 J.F.Dockes */
 #include <string>
 #include <list>
 
@@ -19,4 +19,14 @@
 extern bool maketmpdir(string& tdir);
 extern string stringlistdisp(const list<string>& strs);
 
+/**
+ * Parse input stream into list of strings. 
+ *
+ * Token delimiter is " \t" except inside dquotes. dquote inside
+ * dquotes can be escaped with \ etc...
+ */
+extern bool stringToStrings(const string &s, std::list<string> &tokens);
+
+extern bool stringToBool(const string &s);
+
 #endif /* _SMALLUT_H_INCLUDED_ */