~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

Viewing changes to pith/indxtype.h

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2008-09-23 12:17:56 UTC
  • mfrom: (2.1.8 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080923121756-6u4x8bwq89qlzt32
Tags: 2.00+dfsg-2
Update to package description: note that Alpine is no longer in
alpha. (Closes: #499640)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: indxtype.h 835 2007-11-28 23:02:46Z hubert@u.washington.edu $
 
2
 * $Id: indxtype.h 1058 2008-05-28 20:19:56Z hubert@u.washington.edu $
3
3
 *
4
4
 * ========================================================================
5
 
 * Copyright 2006-2007 University of Washington
 
5
 * Copyright 2006-2008 University of Washington
6
6
 *
7
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
8
 * you may not use this file except in compliance with the License.
153
153
    unsigned           freedata:1;      /* free data when done */
154
154
    unsigned           freecolor:1;     /* free color when done */
155
155
    unsigned           freeprintf:8;    /* how much alloced for print_format */
156
 
    unsigned           wid:8;           /* redundant, width from print_format */
 
156
    unsigned           wid:16;          /* redundant, width from print_format */
157
157
} IELEM_S;
158
158
 
159
159
 
178
178
typedef struct index_field {
179
179
    struct index_field *next;
180
180
    IndexColType        ctype;
181
 
    unsigned            width:8;        /* width of whole field           */
 
181
    unsigned            width:16;       /* width of whole field           */
182
182
    unsigned            leftadj:1;      /* left adjust elements in field  */
183
183
    IELEM_S            *ielem;          /* list of elements in this field */
184
184
} IFIELD_S;