HomeServer/skynet-src/skynet_env.h

10 lines
177 B
C
Raw Normal View History

2024-11-20 15:41:09 +08:00
#ifndef SKYNET_ENV_H
#define SKYNET_ENV_H
const char * skynet_getenv(const char *key);
void skynet_setenv(const char *key, const char *value);
void skynet_env_init();
#endif