X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-private.c;h=f544a810580e2c07cd454c1b47d4df2556856283;hb=02c766f3f1ff964f0d4fa4849f1a55e193afa48d;hp=4c77f879fd782ddb2a7c66ad8973228a8c903e61;hpb=338fb2a2e84df6427a2fdee6769421f57d5666d8;p=pspp diff --git a/src/data/sys-file-private.c b/src/data/sys-file-private.c index 4c77f879fd..f544a81058 100644 --- a/src/data/sys-file-private.c +++ b/src/data/sys-file-private.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 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 the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + 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 3 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. + 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, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include "sys-file-private.h" @@ -22,23 +20,23 @@ #include #include -/* Return the number of bytes used when writing case_data for a variable +/* Return the number of bytes used when writing case_data for a variable of WIDTH */ int sfm_width_to_bytes (int width) { assert (width >= 0); - if (width == 0) + if (width == 0) return MAX_SHORT_STRING; - else if (width < MIN_VERY_LONG_STRING) + else if (width < MIN_VERY_LONG_STRING) return ROUND_UP (width, MAX_SHORT_STRING); - else + else { int chunks = width / EFFECTIVE_LONG_STRING_LENGTH ; int remainder = width % EFFECTIVE_LONG_STRING_LENGTH ; int bytes = remainder + (chunks * MIN_VERY_LONG_STRING); - return ROUND_UP (bytes, MAX_SHORT_STRING); + return ROUND_UP (bytes, MAX_SHORT_STRING); } }