REWise/src/reader.h

44 lines
1.3 KiB
C

/* This file is part of REWise.
*
* REWise 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.
*
* REWise 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, see <https://www.gnu.org/licenses/>.
*/
#ifndef H_REWISE_READER
#define H_REWISE_READER
#include <stdio.h>
#include <string.h>
#include <unistd.h> // access, F_OK
#include <stdint.h> // uint32_t
#include <stdlib.h> // malloc
// PATH_MAX
#ifdef __linux__
#include <linux/limits.h>
#elif defined(__CYGWIN__) || defined(_WIN32) || defined(_WIN64)
#include <limits.h>
#endif
#include "errors.h"
REWError readBytesInto(FILE * fp, unsigned char * dest, uint32_t size);
REWError readInt32(FILE * fp, int * dest);
REWError readUInt32(FILE * fp, unsigned int * dest);
REWError readUInt16(FILE * fp, uint16_t * dest);
REWError readString(FILE * fp, char ** dest);
#endif