chiark / gitweb /
Fiddling with environment variables.
[mLib] / env.h
diff --git a/env.h b/env.h
new file mode 100644 (file)
index 0000000..efe4052
--- /dev/null
+++ b/env.h
@@ -0,0 +1,131 @@
+/* -*-c-*-
+ *
+ * $Id: env.h,v 1.1 1999/07/26 23:15:57 mdw Exp $
+ *
+ * Fiddling with environment variables
+ *
+ * (c) 1999 Straylight/Edgeware
+ */
+
+/*----- Licensing notice --------------------------------------------------* 
+ *
+ * This file is part of the mLib utilities library.
+ *
+ * mLib is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Library General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ * 
+ * mLib is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Library General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Library General Public
+ * License along with mLib; if not, write to the Free
+ * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+/*----- Revision history --------------------------------------------------* 
+ *
+ * $Log: env.h,v $
+ * Revision 1.1  1999/07/26 23:15:57  mdw
+ * Fiddling with environment variables.
+ *
+ */
+
+#ifndef ENV_H
+#define ENV_H
+
+#ifdef __cplusplus
+  extern "C" {
+#endif
+
+/*----- Header files ------------------------------------------------------*/
+
+#ifndef SYM_H
+#  include "sym.h"
+#endif
+
+/*----- Functions provided ------------------------------------------------*/
+
+/* --- @env_get@ --- *
+ *
+ * Arguments:  @sym_table *t@ = pointer to a symbol table
+ *             @const char *name@ = pointer to variable name to look up
+ *
+ * Returns:    Pointer to corresponding value string, or null.
+ *
+ * Use:                Looks up an environment variable in the table and returns its
+ *             value.  If the variable can't be found, a null pointer is
+ *             returned.
+ */
+
+extern char *env_get(sym_table */*t*/, const char */*name*/);
+
+/* --- @env_put@ --- *
+ *
+ * Arguments:  @sym_table *t@ = pointer to a symbol table
+ *             @const char *name@ = pointer to variable name to set
+ *             @const char *value@ = pointer to value string to assign
+ *
+ * Returns:    ---
+ *
+ * Use:                Assigns a value to a variable.  If the @name@ contains an
+ *             equals character, then it's assumed to be of the form
+ *             `VAR=VALUE' and @value@ argument is ignored.  Otherwise, if
+ *             @value@ is null, the variable is deleted.  Finally, the
+ *             normal case: @name@ is a plain name, and @value@ is a normal
+ *             string causes the variable to be assigned the value in the
+ *             way you'd expect.
+ */
+
+extern void env_put(sym_table */*t*/,
+                   const char */*name*/, const char */*value*/);
+
+/* --- @env_import@ --- *
+ *
+ * Arguments:  @sym_table *t@ = pointer to a symbol table
+ *             @char **env@ = pointer to an environment list
+ *
+ * Returns:    ---
+ *
+ * Use:                Inserts all of the environment variables listed into a symbol
+ *             table for rapid access.  Equivalent to a lot of calls to
+ *             @env_put@.
+ */
+
+extern void env_import(sym_table */*t*/, char **/*env*/);
+
+/* --- @env_export@ --- *
+ *
+ * Arguments:  @sym_table *t@ = pointer to a symbol table
+ *
+ * Returns:    A big environment list.
+ *
+ * Use:                Extracts an environment table from a symbol table
+ *             representation of an environment.  The table and all of the
+ *             strings are in one big block allocated from the heap.
+ */
+
+extern char **env_export(sym_table */*t*/);
+
+/* --- @env_destroy@ --- *
+ *
+ * Arguments:  @sym_table *t@ = pointer to symbol table
+ *
+ * Returns:    ---
+ *
+ * Use:                Destroys all the variables in the symbol table.
+ */
+
+extern void env_destroy(sym_table */*t*/);
+
+/*----- That's all, folks -------------------------------------------------*/
+
+#ifdef __cplusplus
+  }
+#endif
+
+#endif