source: trunk/sys/dietlibc/isalpha.c @ 249

Last change on this file since 249 was 1, checked in by alain, 7 years ago

First import

File size: 94 bytes
Line 
1#include <ctype.h>
2
3int isalpha(int ch) {
4  return (unsigned int)((ch | 0x20) - 'a') < 26u;
5}
Note: See TracBrowser for help on using the repository browser.