blob: e3375f6c6b7aed98c2b7146bdc3e433c91cb1f21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $Id: nastdio.h,v 1.1 2000/09/13 20:21:34 shmit Exp $ */
#ifndef NASTDIO_H
#define NASTDIO_H
struct _fieldent {
char *name;
short index;
};
typedef struct _fieldent fieldent;
int io_new(int sock);
#endif
|