aboutsummaryrefslogtreecommitdiff
path: root/src/base/utf/printable.c
blob: 6a8219b19147405f02892a56e898b0ac31d0ce37 (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

/* TODO: this is just ascii... */
int
utf8ยทprintable(rune r)
{
    return (unsigned)r-0x20 < 0x5f;
}