aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdio/scanf_core/reader.cpp
blob: eca0e3784dc8d1744419ea1f9ae4a259d7b943b6 (plain)
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
//===-- Reader definition for scanf -----------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "src/stdio/scanf_core/reader.h"
#include <stddef.h>

namespace LIBC_NAMESPACE {
namespace scanf_core {

void Reader::ungetc(char c) {
  --cur_chars_read;
  if (rb != nullptr && rb->buff_cur > 0) {
    // While technically c should be written back to the buffer, in scanf we
    // always write the character that was already there. Additionally, the
    // buffer is most likely to contain a string that isn't part of a file,
    // which may not be writable.
    --(rb->buff_cur);
    return;
  }
  stream_ungetc(static_cast<int>(c), input_stream);
}
} // namespace scanf_core
} // namespace LIBC_NAMESPACE