2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <strstream>
|
|
|
|
|
|
|
|
// class strstreambuf
|
|
|
|
|
|
|
|
// strstreambuf(const signed char* gnext_arg, streamsize n);
|
|
|
|
|
|
|
|
#include <strstream>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
const signed char buf[] = "abcd";
|
|
|
|
std::strstreambuf sb(buf, sizeof(buf));
|
|
|
|
assert(sb.sgetc() == 'a');
|
|
|
|
assert(sb.snextc() == 'b');
|
|
|
|
assert(sb.snextc() == 'c');
|
|
|
|
assert(sb.snextc() == 'd');
|
|
|
|
assert(sb.snextc() == 0);
|
|
|
|
assert(sb.snextc() == EOF);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const signed char buf[] = "abcd";
|
|
|
|
std::strstreambuf sb(buf, 0);
|
|
|
|
assert(sb.sgetc() == 'a');
|
|
|
|
assert(sb.snextc() == 'b');
|
|
|
|
assert(sb.snextc() == 'c');
|
|
|
|
assert(sb.snextc() == 'd');
|
|
|
|
assert(sb.snextc() == EOF);
|
|
|
|
}
|
|
|
|
}
|