cstrcache.h 211 B

12345678910111213
  1. #pragma once
  2. /* simple constant string cache table using STL unordered_map as storage */
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern const char *cstrcache_get(const char *str);
  7. #ifdef __cplusplus
  8. }
  9. #endif