added a callback function to check whether a given entity is a allocation call
[libfirm] / ir / adt / eset.h
index 14a6eff..60284fd 100644 (file)
@@ -1,17 +1,32 @@
 /*
- * Project:     libFIRM
- * File name:   ir/adt/eset.h
- * Purpose:     Datentyp: Vereinfachte Menge (hash-set) zum Speichern von
- *              Zeigern/Adressen.
- * Author:      Hubert Schmid
- * Modified by:
- * Created:     09.06.2002
- * CVS-ID:      $Id$
- * Copyright:   (c) 2002 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
+ */
+
+/**
+ * @file
+ * @brief       a pointer hashset (WARNING: deprecated, use hashset_new.*
+ *              instead)
+ * @author      Hubert Schmid
+ * @date        09.06.2002
+ * @version     $Id$
  */
-#ifndef _ESET_H_
-#define _ESET_H_
+#ifndef FIRM_ADT_ESET_H
+#define FIRM_ADT_ESET_H
 
 /**
  * "eset" is a set of addresses. The addresses are used for element
@@ -58,4 +73,4 @@ void *eset_next(eset *s);
 /** Inserts all elements of source into target (union).  Does NOT work if NULL is contained in source. */
 void eset_insert_all(eset *target, eset *source);
 
-#endif /* _ESET_H_ */
+#endif