#include "core_math.h"
#include "Os_specific.h"
+#include "../io/includes/setenvc.h"
#define MAX_ENV 256
void GetenvB __PARAMS(( char *name,char *env, int len));
static int Cluni0 __PARAMS((char *env,char **alias,char* in_name,char *out_name, long int lin));
-extern int getUpdateEnvVar(void);
-extern void setUpdateEnvVar(int val);
+
static int n=0;
/************************************************
* expand in_name to produce out_name
/*-----------------------------------------------------------------------------------*/
#ifndef __SETENVC_H__
#define __SETENVC_H__
+
/**
* Set in the system environment a variable to a value
* @param[in] string the name of the variable
*/
int setenvc(char *string,char *value);
+/**
+ * TODO : comment
+ * @return
+ */
+int getUpdateEnvVar(void);
+
+/**
+ * TODO : comment
+ * @param val
+ */
+void setUpdateEnvVar(int val);
+
#endif /* __SETENVC_H__ */
/*-----------------------------------------------------------------------------------*/