ircd-ratbox/ircd-ratbox-3.0.10/include/operhash.h

16 lines
276 B
C
Raw Permalink Normal View History

2023-08-20 17:26:10 +00:00
#ifndef INCLUDED_operhash_h
#define INCLUDED_operhash_h
struct operhash_entry
{
char *name;
int refcount;
};
void init_operhash(void);
const char *operhash_add(const char *name);
const char *operhash_find(const char *name);
void operhash_delete(const char *name);
#endif