[#bsl-basic_stringbuf-uflow] = xref:bsl.adoc[bsl]::xref:bsl/basic_stringbuf.adoc[basic_stringbuf]::uflow :relfileprefix: ../../ :mrdocs: Return the character at the current input position and advance the input position by 1. If no character is available at the current input position, return `traits_type::eof()`. Update the end of the input area, `egptr`, if additional characters are available (as may occur if additional characters have been written to the string buffer). Note that this operation is similar to `underflow`, but advances the current input position. == Synopsis Declared in `<bslstl_stringbuf.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- virtual xref:bsl/basic_stringbuf/int_type.adoc[basic_stringbuf<CHAR_TYPE, CHAR_TRAITS, ALLOCATOR>::int_type] uflow(); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#