This is idents.h in view mode; [Download] [Up]
/* -*-C-*- ****************************************************************************** * * File: idents.h * RCS: $Header: /home/chris/Psopt/cvs/psopt/src/idents.h,v 1.3 1997/08/25 20:57:55 chris Exp $ * Description: * Author: Christian Limpach <chris@nice.ch> * Created: Mon Jun 16 14:22:43 1997 * Modified: Mon Aug 25 16:02:55 1997 (Christian Limpach) chris@nice.ch * Language: C * Package: N/A * Status: Experimental (Do Not Distribute) * * (C) Copyright 1997, Christian Limpach, all rights reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, a copy can be obtained from this * program's author (send electronic mail to chris@nice.ch) or from * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA * 02139, USA. * ****************************************************************************** */ struct identifier { char *name; int refs; char *newname; /* list implementation, replace by tree later */ struct identifier *next; struct identifier *prev; }; typedef struct identifier Identifier; void identifiers_init (); Identifier *count_identifier (char *); Identifier *find_identifier (char *); Identifier *find_reserved_identifier (char *); void add_reserved_identifier (char *);
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.