blob: ffe9b0f28f0d87e970819979f1f12d793b0c9c2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright (c) 1999-2003 Smithsonian Astrophysical Observatory
*/
/*
*
* column.h -- declarations for column processing
*
*/
#ifndef __column_h
#define __column_h
#if HAVE_CONFIG_H
#include "conf.h"
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "prsetup.h"
_PRbeg
void ColumnLoad _PRx((char *ibuf, int size, int n, int convert, void *obuf));
_PRend
#endif
|