X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fpfm-read.h;h=3f84e16023fd4f36ef6fd13667fec2a4eca7d01a;hb=5ff91bd55867848d448c2f09bc7057cc1fb77b18;hp=bb37f1db39488613b7e913450b79934422f09638;hpb=b321086267ad1014dc5d09886396cde30f094437;p=pspp diff --git a/src/pfm-read.h b/src/pfm-read.h index bb37f1db39..3f84e16023 100644 --- a/src/pfm-read.h +++ b/src/pfm-read.h @@ -14,20 +14,15 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #ifndef PFM_READ_H #define PFM_READ_H /* Portable file reading. */ -/* Portable file types. */ -enum pfm_type - { - PFM_COMM, /* Formatted for communication. */ - PFM_TAPE /* Formatted for tape. */ - }; +#include /* Information produced by pfm_read_dictionary() that doesn't fit into a dictionary struct. */ @@ -45,7 +40,7 @@ struct ccase; struct pfm_reader *pfm_open_reader (struct file_handle *, struct dictionary **, struct pfm_read_info *); -int pfm_read_case (struct pfm_reader *, struct ccase *); +bool pfm_read_case (struct pfm_reader *, struct ccase *); void pfm_close_reader (struct pfm_reader *); #endif /* pfm-read.h */