test-skip-bom.cpp 166 B

1234567
  1. TEST(instream_skip_bom) {
  2. {
  3. InStream s(inf, "\xEF\xBB\xBF" "content");
  4. ensure(s.readWord() == "content");
  5. ensure(s.eof());
  6. }
  7. }