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
836 B
C
Raw Permalink Normal View History

2009-05-15 20:01:56 +00:00
#ifndef _ORPHANS_H
#define _ORPHANS_H
/* $Id: orphans.h,v 1.1 2005/11/12 12:33:06 mbse Exp $ */
/*
* Linked list of orpaned ticfiles.
*/
typedef struct _orphans {
struct _orphans *next; /* Linked list */
char TicName[51]; /* TIC filename */
2009-05-15 20:01:56 +00:00
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