help-menu.c: start the default html browser via wscript instead of cmd
[pspp] / src / data / attributes.h
index 87cb7726f8e01a2846299e5da069cba41bbaa244..a5cebc5bcc2eb15296ce1341555ad79bd7a900dc 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008, 2011, 2012, 2016 Free Software Foundation, Inc.
 
    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
@@ -17,7 +17,7 @@
 #ifndef DATA_ATTRIBUTES_H
 #define DATA_ATTRIBUTES_H 1
 
-#include <libpspp/hmapx.h>
+#include "libpspp/hmapx.h"
 
 /* This header supports custom attribute of the sort maintained
    by the DATAFILE ATTRIBUTE and VARIABLE ATTRIBUTE commands.
@@ -52,7 +52,7 @@ void attrset_destroy (struct attrset *);
 
 size_t attrset_count (const struct attrset *);
 
-struct attribute *attrset_lookup (struct attrset *, const char *);
+struct attribute *attrset_lookup (const struct attrset *, const char *);
 void attrset_add (struct attrset *, struct attribute *);
 void attrset_delete (struct attrset *, const char *);
 void attrset_clear (struct attrset *);
@@ -65,6 +65,6 @@ struct attribute *attrset_first (const struct attrset *,
                                  struct attrset_iterator *);
 struct attribute *attrset_next (const struct attrset *,
                                 struct attrset_iterator *);
-
+struct attribute **attrset_sorted (const struct attrset *);
 
 #endif /* data/attributes.h */