Skip to content
Snippets Groups Projects
Commit 68d78c63 authored by ncteisen's avatar ncteisen
Browse files

Add comment

parent 79764a3b
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,10 @@ char *gpr_getenv(const char *name);
/* Sets the the environment with the specified name to the specified value. */
void gpr_setenv(const char *name, const char *value);
/* This is a version of gpr_getenv that does not produce any output if it has to
use an insecure version of the function. It is ONLY to be used to solve the
problem in which we need to check an env variable to configure the verbosity
level of logging. So DO NOT USE THIS. */
char *gpr_getenv_silent(const char *name, char** dst);
#ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment