trick/trick_source/sim_services/Environment/include/env_proto.h

22 lines
349 B
C
Raw Normal View History

2015-02-26 15:02:31 +00:00
#ifndef ENV_PROTO_H
#define ENV_PROTO_H
2015-02-26 15:02:31 +00:00
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
int env_add_var( const char * variable_name, const char * value) ;
const char * get_trick_env( char * variable_name ) ;
const char * env_get_var( const char * variable_name ) ;
int env_print_vars(FILE * fp) ;
#ifdef __cplusplus
}
#endif
#endif