1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <strstream>
// class strstreambuf
// strstreambuf(signed char* gnext_arg, streamsize n, signed char* pbeg_arg = 0);
#include <strstream>
#include <cassert>
int main()
{
{
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);
}
{
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);
}
{
signed char buf[] = "abcd";
std::strstreambuf sb(buf, sizeof(buf), buf);
assert(sb.sgetc() == EOF);
assert(sb.sputc('e') == 'e');
assert(sb.sputc('f') == 'f');
assert(sb.sputc('g') == 'g');
assert(sb.sputc('h') == 'h');
assert(sb.sputc('i') == 'i');
assert(sb.sputc('j') == EOF);
assert(sb.sgetc() == 'e');
assert(sb.snextc() == 'f');
assert(sb.snextc() == 'g');
assert(sb.snextc() == 'h');
assert(sb.snextc() == 'i');
assert(sb.snextc() == EOF);
}
{
signed char buf[] = "abcd";
std::strstreambuf sb(buf, 0, buf);
assert(sb.sgetc() == EOF);
assert(sb.sputc('e') == 'e');
assert(sb.sputc('f') == 'f');
assert(sb.sputc('g') == 'g');
assert(sb.sputc('h') == 'h');
assert(sb.sputc('i') == EOF);
assert(sb.sgetc() == 'e');
assert(sb.snextc() == 'f');
assert(sb.snextc() == 'g');
assert(sb.snextc() == 'h');
assert(sb.snextc() == EOF);
}
{
signed char buf[10] = "abcd";
int s = std::strlen((char*)buf);
std::strstreambuf sb(buf, sizeof(buf)-s, buf + s);
assert(sb.sgetc() == 'a');
assert(sb.snextc() == 'b');
assert(sb.snextc() == 'c');
assert(sb.snextc() == 'd');
assert(sb.snextc() == EOF);
assert(sb.sputc('e') == 'e');
assert(sb.sputc('f') == 'f');
assert(sb.sputc('g') == 'g');
assert(sb.sputc('h') == 'h');
assert(sb.sputc('i') == 'i');
assert(sb.sputc('j') == 'j');
assert(sb.sputc('j') == EOF);
assert(sb.sgetc() == 'e');
assert(sb.snextc() == 'f');
assert(sb.snextc() == 'g');
assert(sb.snextc() == 'h');
assert(sb.snextc() == 'i');
assert(sb.snextc() == 'j');
assert(sb.snextc() == EOF);
}
}
|