view src/ploki/variable.h @ 6934:04f9cc15cad5

<hppavilion[1]> le/rn last-class function/A last-class function is a function that cannot be passed as an argument, accept a function as an argument, be returned by a function, return a function, set to a variable other than its initial name, or be called
author HackBot
date Tue, 23 Feb 2016 00:02:33 +0000
parents ac0403686959
children
line wrap: on
line source

#ifndef VARIABLE_H_
#define VARIABLE_H_

#include "config.h"
#include "strhash.h"

#include <stddef.h>

typedef size_t t_vr_cookie;
#define VR_NO_COOKIE ((size_t)-1)

typedef struct {
	void **data;
	size_t size, length;
	t_strhash *hash;
	void (*del)(void *);
} t_vr_container;

t_vr_container *vr_new(void (*)(void *));
void vr_delete(t_vr_container *);

t_vr_cookie vr_exists(const t_vr_container *, const char *, size_t);
t_vr_cookie vr_register(t_vr_container *, const char *, size_t, void *);

void vr_freeze(t_vr_container *);

ATTR_PURE
void *vr_data(const t_vr_container *, t_vr_cookie);

#if !DEBUG_P
#define vr_data(vc, c) ((vc)->data[c])
#endif

#endif /* VARIABLE_H_ */