chromium/third_party/pdfium/constants/ascii.h

// Copyright 2021 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONSTANTS_ASCII_H_
#define CONSTANTS_ASCII_H_

#include <stdint.h>

namespace pdfium {
namespace ascii {

constexpr uint8_t kNul =;
constexpr uint8_t kControlA =;
constexpr uint8_t kControlB =;
constexpr uint8_t kControlC =;
constexpr uint8_t kBackspace =;
constexpr uint8_t kTab =;
constexpr uint8_t kNewline =;
constexpr uint8_t kReturn =;
constexpr uint8_t kControlV =;
constexpr uint8_t kControlX =;
constexpr uint8_t kControlZ =;
constexpr uint8_t kEscape =;
constexpr uint8_t kSpace =;

}  // namespace ascii
}  // namespace pdfium

#endif  // CONSTANTS_ASCII_H_