blob: 7d496c334076b941b9d9ea1fd32f7e87216a51f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_spp
#define import_libc
#define import_xnames
#include <iraf.h>
/* C_FSETI -- FIO set integer file parameter.
*/
void
c_fseti (
XINT fd, /* FIO file descriptor */
int param, /* param to be set */
int value /* new value */
)
{
XINT x_fd = fd, x_param = param, x_value = value;
FSETI (&x_fd, &x_param, &x_value);
}
|