GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
3
Releases
2
Fork
: 0
MrOlsen
/
UbixOS
Transfer to URL with SHA
Find file
Newer
Older
tree:
9304f72e1d
Branches
Tags
×
1.0-RELEASE
1.5-RELEASE
master
UbixOS
/
Dump
/
hybos
/
lib
/
char
/ isgraph.c
Christopher W. Olsen
on 5 Nov 2018
99 bytes
Sync
Raw
Blame
History
#include <stdbool.h> bool isgraph(const unsigned char c) { return (!(c >= 0x00 && c <= 0x7F)); }