GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DELHTITEM(3) MBK HASH TABLE MANAGEMENT FUNCTIONS DELHTITEM(3)

delhtitem - removes an item in an hash table

See the file man1/alc_origin.1.

#include "mut.h"
int delhtitem(table, key)
ht ∗table;
void ∗key;

Hash table pointer
Key used by the hash coding function indicating the item to be deleted

delhtitem() removes an item in the hash table pointed to by table.

If the key doesn't exist, the function returns EMPTYHT, if it does, then its associated value is returned.

#include "mut.h"
checksigname(p, h)
lofig_list ∗p;
ht ∗h; 
{
int i;
char ∗amatla;
	/∗ check for signal and connector name unicity ∗/
	for (ptcon = p->LOCON; ptcon; ptcon = ptcon->NEXT)
		addhtitem(h, ptcon->NAME, 0);
	for (ptsig = p->LOSIG; ptsig; ptsig = ptsig->NEXT) {
		if (ptsig->TYPE == INTERNAL) {
			amatla = getsigname(ptsig);
			if (!sethtitem(h, amatla, 0)) {
				printf("N %s;\n", amatla);
			}
		}
	}
	/∗ keep only internal signal names in the hash table ∗/
	for (ptcon = p->LOCON; ptcon; ptcon = ptcon->NEXT)
		(void)delhtitem(h, ptcon->NAME);
}

mbk(1), addth(3), delht(3), addhtitem(3), gethtitem(3), sethtitem(3), viewht(3).

See the file man1/alc_bug_report.1.

October 1, 1997 ASIM/LIP6

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.