blob: f88d9fb7a219751cd4f209f8850025a140d8958d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|