std::basic_streambuf::sgetc
From cppreference.com
                    
                                        
                    < cpp | io | basic streambuf
                    
                                                            
                    |   int_type sgetc();  | 
||
Reads one character from the input sequence.
If the input sequence read position is not available, returns underflow(). Otherwise returns traits::to_int_type(*gptr()).
Contents | 
[edit] Parameters
(none)
[edit] Return value
The value of the character pointed to by the get pointer.
[edit] Example
| This section is incomplete Reason: no example  | 
[edit] See also
|    reads one character from the input sequence and advances the sequence  (public member function)  | |
|    advances the input sequence, then reads one character without advancing again  (public member function)  | |