File: overlaps.rs

package info (click to toggle)
rust-codepage-437 0.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: makefile: 4
file content (9 lines) | stat: -rw-r--r-- 163 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#[inline(always)]
fn DIALECT_OVERLAP_CP437(b: u8) -> bool {
    b.is_ascii()
}

#[inline(always)]
fn DIALECT_OVERLAP_UNICODE(c: char) -> bool {
    c.is_ascii()
}