mirror of
https://github.com/matrix-construct/construct
synced 2024-11-06 05:48:54 +01:00
ea53aab823
* librb is no longer a separately configured subproject. * charybdis is now a standalone directory with a binary. * Include path layout now requires a directory ircd/ rb/ etc.
9 lines
220 B
C
9 lines
220 B
C
#ifndef INCLUDED_operhash_h
|
|
#define INCLUDED_operhash_h
|
|
|
|
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
|