예제 #1
0
파일: dict.c 프로젝트: hhktony/dict
int search(pnode_t p, char *word)
{
	while (p != NULL)
	{
		if (strcmp(p->word, word) == 0)
		{
			get_explanation(p);
			return 0;
		}
		p = p->pnext;
	}

	return -1;
}
예제 #2
0
파일: main.c 프로젝트: akaehy/Project
int search3(V_NODE *p, char *w)
{
		while(p != NULL)
		{
			if(strcmp(p->word, w) == 0)
			{
				get_explanation(p);	
				return 0;
			}
			p = p->next;
		}

		return -1;
}