~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to include/partition.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2004-07-22 03:49:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040722034937-cysl08t1jvba4jrx
Tags: 1:3.3.9-3
USERINFO has been renamed to USERINFO.txt; adjust debian/rules code
to match, to get correct information on the About DDD dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* List implentation of a partition of consecutive integers.
2
 
   Copyright (C) 2000 Free Software Foundation, Inc.
 
1
/* List implementation of a partition of consecutive integers.
 
2
   Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
3
3
   Contributed by CodeSourcery, LLC.
4
4
 
5
 
   This file is part of GNU CC.
 
5
   This file is part of GCC.
6
6
 
7
 
   GNU CC is free software; you can redistribute it and/or modify
 
7
   GCC is free software; you can redistribute it and/or modify
8
8
   it under the terms of the GNU General Public License as published by
9
9
   the Free Software Foundation; either version 2, or (at your option)
10
10
   any later version.
11
11
 
12
 
   GNU CC is distributed in the hope that it will be useful,
 
12
   GCC is distributed in the hope that it will be useful,
13
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
15
   GNU General Public License for more details.
16
16
 
17
17
   You should have received a copy of the GNU General Public License
18
 
   along with GNU CC; see the file COPYING.  If not, write to
 
18
   along with GCC; see the file COPYING.  If not, write to
19
19
   the Free Software Foundation, 59 Temple Place - Suite 330,
20
20
   Boston, MA 02111-1307, USA.  */
21
21
 
40
40
extern "C" {
41
41
#endif /* __cplusplus */
42
42
 
43
 
#include <ansidecl.h>
 
43
#include "ansidecl.h"
44
44
#include <stdio.h>
45
45
 
46
46
struct partition_elem
78
78
#define partition_find(partition__, element__) \
79
79
    ((partition__)->elements[(element__)].class_element)
80
80
 
 
81
#ifdef __cplusplus
 
82
}
 
83
#endif /* __cplusplus */
 
84
 
81
85
#endif /* _PARTITION_H */