This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/orphans.h

23 lines
789 B
C
Raw Normal View History

2005-11-12 12:32:47 +00:00
#ifndef _ORPHANS_H
#define _ORPHANS_H
/* $Id$ */
/*
* Linked list of orpaned ticfiles.
*/
typedef struct _orphans {
struct _orphans *next; /* Linked list */
char TicName[13]; /* TIC filename */
char Area[21]; /* TIC area */
char FileName[81]; /* TIC filename */
unsigned Orphaned : 1; /* Real orphaned file */
unsigned BadCRC : 1; /* Present but wrong crc */
unsigned Purged : 1; /* Can be purged */
} orphans;
void tidy_orphans(orphans **);
void fill_orphans(orphans **, char *, char *, char *, int, int);
#endif