nfs-ganesha 1.4

shell_vars.h

Go to the documentation of this file.
00001 
00019 #ifndef _SHELL_VARS_H
00020 #define _SHELL_VARS_H
00021 
00022 #include <stdio.h>
00023 
00024 #define MAX_VAR_LEN   32
00025 
00029 int is_authorized_varname(char *str);
00030 
00034 char *get_var_value(char *varname);
00035 
00039 int set_var_value(char *varname, char *var_value);
00040 
00043 int free_var(char *varname);
00044 
00050 void print_varlist(FILE * output, int is_dlen);
00051 
00052 #endif