#include "store.h" const LSUP_StoreInt * LSUP_store_int (LSUP_StoreType type) { switch (type) { #define ENTRY(a, b) \ case LSUP_STORE_##a: return &b; BACKEND_TBL #undef ENTRY default: return NULL; } }