X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Ffile-handle.h;h=d7c14e991b7ea5d8283fcba9ea07c52e220d668b;hb=05a2c3f6e9560a57e87206ac3358946bf6d43b42;hp=00a79109601465fdf05f69710421aec690dd427e;hpb=b321086267ad1014dc5d09886396cde30f094437;p=pspp-builds.git diff --git a/src/file-handle.h b/src/file-handle.h index 00a79109..d7c14e99 100644 --- a/src/file-handle.h +++ b/src/file-handle.h @@ -14,8 +14,8 @@ 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. */ #if !file_handle_h #define file_handle_h 1 @@ -31,9 +31,15 @@ enum file_handle_mode MODE_BINARY /* Fixed-length records. */ }; + + +void fh_init(void); +void fh_done(void); + /* Parsing handles. */ struct file_handle *fh_parse (void); + /* Opening and closing handles. */ void **fh_open (struct file_handle *, const char *type, const char *mode); int fh_close (struct file_handle *, const char *type, const char *mode);