pretty/lib.rs
1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Pretty printing utilities.
6
7#![no_std]
8
9pub mod hexdump;
10pub mod sizes;
11
12pub use hexdump::{
13 hexdump_very_ex_raw, hexdump_very_ex_rs, hexdump8_very_ex_raw, hexdump8_very_ex_rs,
14};
15pub use sizes::{
16 MAX_FORMAT_SIZE_LEN, SizeUnit, format_size_fixed_rs, format_size_rs, parse_size_bytes,
17};