1 2 3 4 5 6 7 8
#include <libc.h> int isblank(int c) { return (c == ' ' || c == '\t'); } weak_reference(isblank, isblank_l);