소스 검색

Added a header for text handling in ascii

channel
Ludovic 'Archivist' Lagouardette 3 년 전
부모
커밋
b31ad140a7
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      include/gp/text/ascii.hpp

+ 13
- 0
include/gp/text/ascii.hpp 파일 보기

@ -0,0 +1,13 @@
#pragma once
inline bool is_digit(char v) {
return v >= '0' && v <= '9';
}
inline bool is_alpha(char v) {
return (v >= 'a' && v <= 'z' )||(v >= 'A' && v <= 'Z');
}
inline bool is_alnum(char v) {
return is_alpha(v) || is_digit(v);
}

불러오는 중...
취소
저장