diff options
Diffstat (limited to 'rdoff/collectn.h')
-rw-r--r-- | rdoff/collectn.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rdoff/collectn.h b/rdoff/collectn.h index 2dc786e..dc4f7cc 100644 --- a/rdoff/collectn.h +++ b/rdoff/collectn.h @@ -1,17 +1,18 @@ -/* collectn.h Header file for 'collection' abstract data type +/* + * collectn.h - header file for 'collection' abstract data type. * * This file is public domain, and does not come under the NASM license. * It, along with 'collectn.c' implements what is basically a variable - * length array (of pointers) + * length array (of pointers). */ #ifndef _COLLECTN_H #define _COLLECTN_H typedef struct tagCollection { - void *p[32]; /* array of pointers to objects */ + void *p[32]; /* array of pointers to objects */ - struct tagCollection *next; + struct tagCollection *next; } Collection; void collection_init(Collection * c); @@ -19,4 +20,3 @@ void ** colln(Collection * c, int index); void collection_reset(Collection * c); #endif - |