URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [stable_0_1_x/] [or1ksim/] [port/] [isblank.c] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
#include "config.h" #include "port.h" #ifndef HAVE_ISBLANK /* *isblank() is a GNU extension *not available on Solaris, for example */ int isblank(int c) { return (c==' ') || (c=='\t'); } #endif
Go to most recent revision | Compare with Previous | Blame | View Log