hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

+openbsd.ha (277B)


      1 // SPDX-License-Identifier: MPL-2.0
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 use rt;
      5 
      6 // Platform-specific path separator byte.
      7 export def SEP: u8 = '/';
      8 
      9 const sepstr: str = "/";
     10 
     11 // Maximum length of a file path for this platform.
     12 export def MAX: size = rt::PATH_MAX - 1;