Type representing an Expando. More...
#include "config.h"
#include <limits.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "expando.h"
Go to the source code of this file.
Functions | |
static void | expando_destroy (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef) |
Destroy an Expando object - Implements ConfigSetType::destroy() -. | |
static int | expando_string_set (const struct ConfigSet *cs, void *var, struct ConfigDef *cdef, const char *value, struct Buffer *err) |
Set an Expando by string - Implements ConfigSetType::string_set() -. | |
static int | expando_string_get (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, struct Buffer *result) |
Get an Expando as a string - Implements ConfigSetType::string_get() -. | |
static int | expando_native_set (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err) |
Set an Expando object from an Expando config item - Implements ConfigSetType::native_get() -. | |
static intptr_t | expando_native_get (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, struct Buffer *err) |
Get an Expando object from an Expando config item - Implements ConfigSetType::native_get() -. | |
static int | expando_string_plus_equals (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, const char *value, struct Buffer *err) |
Add to an Expando by string - Implements ConfigSetType::string_plus_equals() -. | |
static int | expando_reset (const struct ConfigSet *cs, void *var, const struct ConfigDef *cdef, struct Buffer *err) |
Reset an Expando to its initial value - Implements ConfigSetType::reset() -. | |
const struct Expando * | cs_subset_expando (const struct ConfigSubset *sub, const char *name) |
Get an Expando config item by name. | |
Variables | |
const struct ConfigSetType | CstExpando |
Config type representing an Expando. | |
Type representing an Expando.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file config_type.c.
const struct Expando * cs_subset_expando | ( | const struct ConfigSubset * | sub, |
const char * | name | ||
) |
Get an Expando config item by name.
sub | Config Subset |
name | Name of config item |
Definition at line 357 of file config_type.c.
const struct ConfigSetType CstExpando |
Config type representing an Expando.
Definition at line 337 of file config_type.c.