| author | |
| committer | |
| log | ee97fbc199a6b5cf04637d044650d407ce44f883 |
| tree | 59b2b375f12311feab752935386598224cb5aa02 |
| parent | 846dbf2745561d8c264527973860b16ae698cb9a |
See https://github.com/ziglang/zig/issues/8419#issuecomment-8437198981 files changed, 1 insertions(+), 0 deletions(-)
lib/std/ascii.zig+1| ... | @@ -278,6 +278,7 @@ pub fn isPrint(c: u8) bool { | ... | @@ -278,6 +278,7 @@ pub fn isPrint(c: u8) bool { |
| 278 | return inTable(c, tIndex.Graph) or c == ' '; | 278 | return inTable(c, tIndex.Graph) or c == ' '; |
| 279 | } | 279 | } |
| 280 | 280 | ||
| 281 | /// DEPRECATED: create your own function based on your needs and what you want to do. | ||
| 281 | pub fn isPunct(c: u8) bool { | 282 | pub fn isPunct(c: u8) bool { |
| 282 | return inTable(c, tIndex.Punct); | 283 | return inTable(c, tIndex.Punct); |
| 283 | } | 284 | } |