kos_sys/os/
limits.rs

1
2
3
4
5
6
7
8
// Rust for KallistiOS/Dreamcast
// Copyright (C) 2024 Eric Fradella
// https://dreamcast.rs/

pub const NAME_MAX: usize       = 256;
pub const MAX_FN_LEN: usize     = NAME_MAX;
pub const PATH_MAX: usize       = 4096;
pub const SYMLOOP_MAX: usize    = 16;