1 2 3 4 5 6 7 8
#include <libc.h> // for weak_reference int islower(int c) { return (unsigned)c - 'a' < 26; } weak_reference(islower, islower_l);