trick/trick_source/sim_services/Environment/include/env_proto.h
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

22 lines
349 B
C

#ifndef ENV_PROTO_H
#define ENV_PROTO_H
#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