Exemplo n.º 1
0
void *image_lookuptag(mess_image *img, const char *tag)
{
	return tagpool_lookup(&img->tagpool, tag);
}
Exemplo n.º 2
0
void *floppy_tag(floppy_image *floppy, const char *tagname)
{
    assert(floppy);
    return tagpool_lookup(&floppy->tags, tagname);
}