summaryrefslogtreecommitdiff
path: root/include/mailutils/vartab.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mailutils/vartab.h')
-rw-r--r--include/mailutils/vartab.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/include/mailutils/vartab.h b/include/mailutils/vartab.h
deleted file mode 100644
index db881c2d2..000000000
--- a/include/mailutils/vartab.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2007, 2010-2012, 2014-2016 Free Software Foundation,
- Inc.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 3 of the License, or (at your option) any later version.
-
- This library 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
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General
- Public License along with this library; If not, see
- <http://www.gnu.org/licenses/>. */
-
-#ifndef _MAILUTILS_VARTAB_H
-#define _MAILUTILS_VARTAB_H
-
-#include <mailutils/types.h>
-
-#ifdef MU_SUPPRESS_DEPRECATION
-# undef MU_DEPRECATED
-# define MU_DEPRECATED
-#else
-# warning "Mailutils support for vartab functions has been deprecated."
-# warning "Revise your code to use <mailutils/wordsplit.h>."
-#endif
-
-typedef int (*mu_var_expansion_fp) (const char *name, void *data, char **p);
-typedef void (*mu_var_free_fp) (void *data, char *value);
-
-int mu_vartab_create (mu_vartab_t *pvar) MU_DEPRECATED;
-int mu_vartab_destroy (mu_vartab_t *pvar) MU_DEPRECATED;
-int mu_vartab_define (mu_vartab_t var, const char *name, const char *value,
- int isstatic) MU_DEPRECATED;
-int mu_vartab_define_exp (mu_vartab_t var, const char *name,
- mu_var_expansion_fp fun, mu_var_free_fp free,
- void *data) MU_DEPRECATED;
-int mu_vartab_count (mu_vartab_t vt, size_t *pcount) MU_DEPRECATED;
-int mu_vartab_getvar (mu_vartab_t vt, const char *name, const char **pvalue)
- MU_DEPRECATED;
-int mu_vartab_expand (mu_vartab_t vt, const char *str, char **pres)
- MU_DEPRECATED;
-#endif

Return to:

Send suggestions and report system problems to the System administrator.