AiCPlayer
Interface of aic vm - for rendering aspect, sensors, video records
config_env.h
Go to the documentation of this file.
1 
5 #ifndef __CONFIG_ENV_H_
6 #define __CONFIG_ENV_H_
7 
12 char* configvar_string(char* varname);
13 
18 int configvar_int(char* varname);
25 int configvar_bool(char* varname);
26 
27 #endif
int configvar_int(char *varname)
Get the value of a integer config variable from the env.
Definition: config_env.c:36
int configvar_bool(char *varname)
Get the value of a boolean config variable from the env.
Definition: config_env.c:45
char * configvar_string(char *varname)
Get the value of a config variable from the env.
Definition: config_env.c:29