// SPDX-License-Identifier: Apache-2.0
// Copyright 2024 Taylan Gökkaya
// This file is licensed under the terms of Apache-2.0 License.
usesuper::IResult;usecrate::parser::prelude::*;pubfnmatch_literal<'a>(lit:&'_str, input:&'astr)->IResult<&'astr, &'astr>{preceded(multispace0,tag(lit))(input)}