use super::SyscallRuntime;
use crate::{ExecutionMode, SyscallCode};
pub(crate) fn hint_len_syscall<'a, M: ExecutionMode, RT: SyscallRuntime<'a, M>>(
ctx: &mut RT,
_: SyscallCode,
_: u64,
_: u64,
) -> Option<u64> {
ctx.core_mut().mem_reads().next().map(|mem_value| mem_value.value)
}