17 lines
173 B
C
17 lines
173 B
C
#ifndef CALLSTAT_H
|
|
#define CALLSTAT_H
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
typedef struct _callstat {
|
|
time_t trytime;
|
|
int tryno;
|
|
int trystat;
|
|
} callstat;
|
|
|
|
|
|
callstat *getstatus(faddr*);
|
|
|
|
#endif
|