1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* libdatrie - Double-Array Trie Library
* Copyright (C) 2006 Theppitak Karoonboonyanan <theppitak@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* fileutils.h - File utility functions
* Created: 2006-08-15
* Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
*/
#include <string.h>
#include <stdlib.h>
#include "fileutils.h"
/* ==================== BEGIN IMPLEMENTATION PART ==================== */
/*--------------------------------*
* FUNCTIONS IMPLEMENTATIONS *
*--------------------------------*/
Bool
file_read_int32 (FILE *file, int32 *o_val)
{
unsigned char buff[4];
if (fread (buff, 4, 1, file) == 1) {
*o_val = (buff[0] << 24) | (buff[1] << 16) | (buff[2] << 8) | buff[3];
return TRUE;
}
return FALSE;
}
Bool
file_write_int32 (FILE *file, int32 val)
{
unsigned char buff[4];
buff[0] = (val >> 24) & 0xff;
buff[1] = (val >> 16) & 0xff;
buff[2] = (val >> 8) & 0xff;
buff[3] = val & 0xff;
return (fwrite (buff, 4, 1, file) == 1);
}
Bool
file_read_int16 (FILE *file, int16 *o_val)
{
unsigned char buff[2];
if (fread (buff, 2, 1, file) == 1) {
*o_val = (buff[0] << 8) | buff[1];
return TRUE;
}
return FALSE;
}
Bool
file_write_int16 (FILE *file, int16 val)
{
unsigned char buff[2];
buff[0] = val >> 8;
buff[1] = val & 0xff;
return (fwrite (buff, 2, 1, file) == 1);
}
Bool
file_read_int8 (FILE *file, int8 *o_val)
{
return (fread (o_val, sizeof (int8), 1, file) == 1);
}
Bool
file_write_int8 (FILE *file, int8 val)
{
return (fwrite (&val, sizeof (int8), 1, file) == 1);
}
Bool
file_read_chars (FILE *file, char *buff, int len)
{
return (fread (buff, sizeof (char), len, file) == len);
}
Bool
file_write_chars (FILE *file, const char *buff, int len)
{
return (fwrite (buff, sizeof (char), len, file) == len);
}
/*
vi:ts=4:ai:expandtab
*/
|