if_iwm - Factor out firmware station handling into if_iwm_sta.c.
[dragonfly.git] / contrib / ldns / compat / isblank.c
blob3b38154c5fdd073f58e6b8b4ce979ea0f01c42bb
1 /* Just a replacement, if the original isblank is not
2 present */
4 #if HAVE_CONFIG_H
5 #include <ldns/config.h>
6 #endif
8 int isblank(int c);
10 /* true if character is a blank (space or tab). C99. */
11 int
12 isblank(int c)
14 return (c == ' ') || (c == '\t');