示例#1
0
node* Node_NEW_Set (int type, double num, char* word, int op)
{
	node* new_node = Node_NEW();
	Node_Set (new_node, type, num, word, op);

	return new_node;
}
示例#2
0
文件: urlpart.c 项目: ViFork/ResInfo
static err_t Set(urlpart* p,dataid Id, const void* Data, size_t Size)
{
	if (!p->Input)
		return ERR_INVALID_DATA;
	return Node_Set(p->Input,Id,Data,Size);
}