if_iwm - Factor out firmware station handling into if_iwm_sta.c.
[dragonfly.git] / contrib / ldns / compat / isascii.c
blob8a4ab3743110da9d8d36dde39e9e96966ba05f58
1 /* Just a replacement, if the original isascii is not
2 present */
4 #if HAVE_CONFIG_H
5 #include <ldns/config.h>
6 #endif
8 int isascii(int c);
10 /* true if character is ascii. */
11 int
12 isascii(int c)
14 return c >= 0 && c < 128;