12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef _LSUP_ENVIRONMENT_H
- #define _LSUP_ENVIRONMENT_H
- #include "term.h"
- #define LSUP_IS_INIT (LSUP_term_cache != NULL)
- extern LSUP_NSMap *LSUP_default_nsm;
- extern LSUP_Term *LSUP_default_ctx;
- extern LSUP_Buffer *LSUP_default_ctx_buf;
- LSUP_rc
- LSUP_init (void);
- void
- LSUP_done (void);
- LSUP_rc
- LSUP_env_put_id (const uint32_t key, const char *data);
- const char *
- LSUP_env_get_id (const uint32_t key);
- #endif
|