view mcabber/src/settings.h @ 292:96917f04c841

Define isblank() when C99 is not used
author Mikael Berthe <mikael@lilotux.net>
date Sat, 09 Jul 2005 09:41:31 +0100
parents 1eea0fa0955e
children 871e53769084
line wrap: on
line source

#ifndef __SETTINGS_H__
#define __SETTINGS_H__ 1

#include <glib.h>

#ifndef	__USE_ISOC99
# define isblank(c)  ((c) == 0x20 || (c) == 0x09)
#endif

#define SETTINGS_TYPE_OPTION    1
#define SETTINGS_TYPE_ALIAS     2
#define SETTINGS_TYPE_BINDING   3

#define settings_opt_get(k)     settings_get(SETTINGS_TYPE_OPTION, k)
#define settings_opt_get_int(k) settings_get_int(SETTINGS_TYPE_OPTION, k)

guint   parse_assigment(gchar *assignment,
                        const gchar **pkey, const gchar **pval);
void    settings_set(guint type, const gchar *key, const gchar *value);
void    settings_del(guint type, const gchar *key);
const gchar *settings_get(guint type, const gchar *key);
int     settings_get_int(guint type, const gchar *key);

const gchar *isbound(int key);

#endif /* __SETTINGS_H__ */