diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-07-13 13:07:59 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-07-13 13:07:59 +0200 |
commit | fdb2ec531c7813b015df5aa3bc5c0ea6e533c1cf (patch) | |
tree | c092406481b34be21392bf78ac94783b47cf7c5d /FICS/iset.h | |
parent | 589d4eee3b0a290ffc4625796083c3d8e84f49db (diff) |
Added a new command
Diffstat (limited to 'FICS/iset.h')
-rw-r--r-- | FICS/iset.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/FICS/iset.h b/FICS/iset.h new file mode 100644 index 0000000..f88d9fb --- /dev/null +++ b/FICS/iset.h @@ -0,0 +1,16 @@ +#ifndef GUARD_ISET_H +#define GUARD_ISET_H + +#include "command.h" /* param_list */ + +#ifdef __cplusplus +extern "C" { +#endif + +int com_iset(int, param_list); + +#ifdef __cplusplus +} +#endif + +#endif |