mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
removed ^M from System.h git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@3169 1feff8c3-07ed-0310-ac33-dd36852eb9cd
17 lines
253 B
C++
17 lines
253 B
C++
#if !defined(CHARSTAR_H_INCLUDED)
|
|
#define CHARSTAR_H_INCLUDED
|
|
|
|
struct CHARSTAR_LESS:
|
|
std::binary_function < const char *, const char *,
|
|
bool >
|
|
{
|
|
bool
|
|
operator() (const char *_X, const char *_Y) const
|
|
{
|
|
return::strcmp(_X, _Y) <
|
|
0;
|
|
}
|
|
};
|
|
|
|
#endif
|