--- 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.12 2006-01-19 12:01:43 dockes Exp $ (C) 2004 J.F.Dockes */
+/* @(#$Id: smallut.h,v 1.13 2006-01-26 07:03:35 dockes Exp $ (C) 2004 J.F.Dockes */
#include <string>
#include <list>
@@ -25,12 +25,12 @@
* 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 stringToStrings(const string &s, list<string> &tokens);
/**
* Split input string. No handling of quoting
*/
-extern void stringToTokens(const string &s, std::list<string> &tokens,
+extern void stringToTokens(const string &s, list<string> &tokens,
const string &delims = " \t");
/** Convert string to boolean */
@@ -40,6 +40,6 @@
tab}) at beginning and end of input string */
extern void trimstring(string &s, const char *ws = " \t");
-extern std::string escapeHtml(const std::string &in);
+extern string escapeHtml(const string &in);
#endif /* _SMALLUT_H_INCLUDED_ */