fcomp.h
1//-*-C++-*-
2/***************************************************************************
3 *
4 * Copyright (C) 2004 by Haydon Knight
5 * Licensed under the Academic Free License version 2.1
6 *
7 ***************************************************************************/
8
9#ifndef __fcomp_h_
10#define __fcomp_h_
11
12#include <stdio.h>
13#include <assert.h>
14
15/******************************************************************************/
16/* these two functions are used by load and unload functions. */
17/* so need to declare them here */
18
19// Writes out compressed data
20
21
22/*****************************************************************************/
23// reads in compressed data
24int fcompread (unsigned nvals, float * vals, FILE * fptr, bool big_endian);
25
26int fcompwrite(unsigned nvals,const float * vals, FILE * fptr);
27
28#endif

Generated using doxygen 1.14.0