//! A crate for applying text-based patches.
//!
//! This crate provides a single primary function, `apply`, which takes a patch
//! and the original content as string slices and returns the patched content.
//! It is designed for simplicity and robustness, especially for use by AI agents.
pub use apply;
pub use ;
pub use ZenpatchError;
pub use Vfs;
pub use get_llm_instructions;