Coda Distributed File System
codaenv.h
Go to the documentation of this file.
1/* BLURB lgpl
2
3 Coda File System
4 Release 6
5
6 Copyright (c) 2018 Carnegie Mellon University
7 Additional copyrights listed below
8
9This code is distributed "AS IS" without warranty of any kind under
10the terms of the GNU Library General Public Licence Version 2, as
11shown in the file LICENSE. The technical and financial contributors to
12Coda are listed in the file CREDITS.
13
14 Additional copyrights
15 none currently
16
17#*/
18
19#ifndef _CODAENV_H_
20#define _CODAENV_H_
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26char *codaenv_find(const char *var_name);
27
28int codaenv_int(const char *var_name, const int prev_val);
29
30const char *codaenv_str(const char *var_name, const char *prev_val);
31
32#ifdef __cplusplus
33}
34#endif
35
36#endif /* _CODAENV_H_ */
int codaenv_int(const char *var_name, const int prev_val)
Definition: codaenv.c:43
const char * codaenv_str(const char *var_name, const char *prev_val)
Definition: codaenv.c:54
char * codaenv_find(const char *var_name)
Definition: codaenv.c:27