Newer
Older
ubixos / src / lib / libstdc++ / std / straights.h
@reddawg reddawg on 28 May 2004 266 bytes Got Some Things Working About 10 To Go
typedef char charT;

extern "C++" {

template <class charT> struct string_char_traits {
  typedef charT char_type;
  static char_type eos () { return char_type(); } // the null character
  static void assign (char_type& c1, const char_type& c2) { c1 = c2; }
  };

}