store.c 227 B

12345678910111213
  1. #include "store.h"
  2. const LSUP_StoreInt *
  3. LSUP_store_int (LSUP_StoreType type) {
  4. switch (type) {
  5. #define ENTRY(a, b) \
  6. case LSUP_STORE_##a: return &b;
  7. BACKEND_TBL
  8. #undef ENTRY
  9. default: return NULL;
  10. }
  11. }