mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 06:52:52 +00:00
14a75508a3
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.
22 lines
349 B
C
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
|