1/* Just a replacement, if the original isblank is not
2 present */34#ifHAVE_CONFIG_H5#include <ldns/config.h>
6#endif78intisblank(intc);
910/* true if character is a blank (space or tab). C99. */11intisblank(int c)12isblank(intc)13{
14return (c == ' ') || (c == '\t');
15}
16