Example #1
0
const char*
AsxTokenizer::read_quoted_string (char start)
{
	clear_buffer_str ();

	char c = read_char ();
	while (!stream->Eof () && c != start) {
		g_string_append_c (buffer, c);
		c = read_char ();
	} 

	if (stream->Eof ()) {
		
	}

	return buffer->str;
}