1 /*
2  *                               Alizarin Tetris
3  * The identity interface header file.
4  *
5  * Copyright 2000, Kiri Wagstaff & Westley Weimer
6  */
7 #ifndef __IDENTITY_H
8 #define __IDENTITY_H
9 
10 typedef struct person_struct {
11     char *name;		/* who is it? */
12     int level;		/* at what level? */
13 } person;
14 
15 typedef struct identity_struct {
16     int n;
17     person *p;
18 } identity;
19 
20 #endif
21