Add a few stubs

This commit is contained in:
Pierre Pronchery 2015-11-06 00:06:14 +01:00
parent 97823882ce
commit d47f47d083

View File

@ -80,6 +80,39 @@ Variable * variable_new(VariableType type, void * value)
}
/* variable_new_array */
Variable * variable_new_array(VariableType type, size_t size, ...)
{
/* FIXME implement */
return NULL;
}
/* variable_new_arrayv */
Variable * variable_new_arrayv(VariableType type, size_t size, void ** values)
{
/* FIXME implement */
return NULL;
}
/* variable_new_compound */
Variable * variable_new_compound(String const * name, size_t members, ...)
{
/* FIXME implement */
return NULL;
}
/* variable_new_compoundv */
Variable * variable_new_compoundv(String const * name, size_t members,
VariableType * types, void ** values)
{
/* FIXME implement */
return NULL;
}
/* variable_new_copy */
Variable * variable_new_copy(Variable * variable)
{