aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/debug
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/debug')
0 files changed, 0 insertions, 0 deletions
esThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/isspace.c
blob: bfa46648b3b2dda170f104d6c694861fb5c78944 (plain)
1
2
3
4
5
6
7
8
9
#include <ctype.h>

int __isspace_ascii ( int ch );
int __isspace_ascii ( int ch )
{
    return (unsigned int)(ch - 9) < 5u  ||  ch == ' ';
}

int isspace ( int ch ) __attribute__((weak,alias("__isspace_ascii")));