Switch to side-by-side view
--- a +++ b/src/utils/smallut.h @@ -0,0 +1,13 @@ +#ifndef _SMALLUT_H_INCLUDED_ +#define _SMALLUT_H_INCLUDED_ +/* @(#$Id: smallut.h,v 1.1 2005-01-31 14:31:10 dockes Exp $ (C) 2004 J.F.Dockes */ +#include <string> + +using std::string; + +extern int stringicmp(const string& s1, const string& s2); +extern int stringlowercmp(const string& alreadylower, const string& s2); +extern int stringuppercmp(const string& alreadyupper, const string& s2); + + +#endif /* _SMALLUT_H_INCLUDED_ */