// Copyright (c) 2025-2026 the libmagic-rs contributors
// SPDX-License-Identifier: Apache-2.0
//! Relative offset resolution (not yet implemented)
use crateLibmagicError;
use crateOffsetSpec;
/// Resolve a relative offset specification
///
/// Relative offsets are calculated relative to the current evaluation position
/// rather than from the start of the file.
///
/// # Errors
///
/// Currently returns `LibmagicError::EvaluationError` with `UnsupportedType`
/// as relative offset resolution is not yet implemented.
// TODO: Implement relative offset resolution (issue #38)