Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#define is_dig(x) ((x) >= '0' && (x) <= '9')
is_dig(pattern[c]) ;
is_dig( (pattern[c]) >= '0' && (pattern[c]) << '9' ;
is_dig(pattern[c]);
(pattern[c]) >= '0' && (pattern[c]) <= '9';