X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdatasheet.h;h=860f236ec33af74b1ba8f53be1d5108a40644501;hb=cc57a28ef6796ae9a64ef80d453f72126956d49d;hp=2a05fe0da516bef80ea9ee7abafb7b38c33e4892;hpb=9bf1c33953f7feff2a24a06293f6fe96b75cc41a;p=pspp-builds.git diff --git a/src/data/datasheet.h b/src/data/datasheet.h index 2a05fe0d..860f236e 100644 --- a/src/data/datasheet.h +++ b/src/data/datasheet.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007, 2009 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 @@ -50,7 +50,7 @@ void datasheet_move_columns (struct datasheet *, /* Rows. */ casenumber datasheet_get_row_cnt (const struct datasheet *); bool datasheet_insert_rows (struct datasheet *, - casenumber before, struct ccase[], + casenumber before, struct ccase *[], casenumber cnt); void datasheet_delete_rows (struct datasheet *, casenumber first, casenumber cnt); @@ -59,7 +59,7 @@ void datasheet_move_rows (struct datasheet *, size_t cnt); /* Data. */ -bool datasheet_get_row (const struct datasheet *, casenumber, struct ccase *); +struct ccase *datasheet_get_row (const struct datasheet *, casenumber); bool datasheet_put_row (struct datasheet *, casenumber, struct ccase *); bool datasheet_get_value (const struct datasheet *, casenumber, size_t column, union value *, int width);