1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #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
|